码迷,mamicode.com
首页 >  
搜索关键字:乘法表    ( 980个结果
Java零基础系列006——小测试(循环)
1、输出100以内奇数和偶数的和(不包括100);2、输出1-1000之间能被5整除的数,且每行输出3行;3、打印输出99乘法表public class Test { public static void main(String[] args) { //100以内奇数和偶数的和(...
分类:编程语言   时间:2015-01-30 16:53:46    阅读次数:252
PHP学习笔记之九九乘法表
一个简单的九九乘法表,是对表格,css和for语句的练习...
分类:Web程序   时间:2015-01-29 09:34:13    阅读次数:208
jsp案例之输出九九乘法表(仅使用jsp脚本元素)
JSP案例:使用JSP输出99乘法表,要求仅使用脚本元素。代码如下: JSP练习使用JSP脚本元素输出九九乘法表 九九乘法表 <% for(int i = 1; i <% ...
分类:Web程序   时间:2015-01-27 18:21:56    阅读次数:430
99乘法表
#!/bin/bashforiin$(seq19) do foryin$(seq1$i) do echo-ne"$i*$y=$(($i*$y))\t" done echo done
分类:其他好文   时间:2015-01-20 18:32:10    阅读次数:155
九九乘法表
#include#define TextHeight 20#define TextWdith 80LRESULT CALLBACK WndProc(HWND,UINT,WPARAM,LPARAM);int WINAPI WinMain(HINSTANCE hInstance,HINSTANCE hP...
分类:其他好文   时间:2015-01-18 17:07:09    阅读次数:236
C# 编写9*9乘法表!
??using System;using System.Collections.Generic;using System.Linq;using System.Text;using System.Threading.Tasks;namespace ConsoleApplication10{    class Program    {        static void Main(string[] ...
分类:Windows程序   时间:2015-01-10 01:06:47    阅读次数:206
嵌套循环 99乘法表 学习笔记
classTestJiuJiu { publicstaticvoidmain(String[]args) { for(inti=1;i<=9;i++){ for(intj=1;j<=i;j++){ System.out.print(i+"*"+j+"="+i*j+"\t"); } System.out.println(); } } }
分类:其他好文   时间:2015-01-08 15:33:20    阅读次数:123
基于c#winform的九九乘法表
基于c#winform的九九乘法表最近做作业时候做到了基于c#窗体的九九乘法表,在此做个总结,方便大家交流使用。制作思路为自定义一些lable控件,控件上显示乘法表的内容,在点击对应的内容时出现结果。运行结果:点击时效果:窗体加载时:点击label时:完整代码:using System;using ...
分类:Windows程序   时间:2014-12-29 21:16:09    阅读次数:393
Python 练习册,每天一个小程序
## Python 练习册,每天一个小程序 ## #### 说明: #### - Python 练习册,每天一个小程序。注:将 Python 换成其他语言,大多数题目也适用 - 不会出现诸如「打印九九乘法表」、「打印水仙花」之类的题目 - [点此...
分类:编程语言   时间:2014-12-27 00:23:34    阅读次数:303
九九乘法表啊
/** *九九乘法表啊 *12月21日 *逗号问题尚未解决 */ public class P105 { ?? ?public static void main(String[] args) ?? ?{ ?? ??? ?System.out.println("九九乘法表啊~~~"); ?? ??? ?int i...
分类:其他好文   时间:2014-12-22 11:26:01    阅读次数:201
980条   上一页 1 ... 91 92 93 94 95 ... 98 下一页
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!