码迷,mamicode.com
首页 >  
搜索关键字:乘法表    ( 980个结果
for循环之九九乘法表的制作
用for循环制作的九九乘法表
分类:其他好文   时间:2015-08-10 22:01:08    阅读次数:107
打印输出九九乘法表
1.打印乘法口诀表。2.要求整齐,美观。
分类:其他好文   时间:2015-08-07 16:37:07    阅读次数:192
乘法表
1 { 2 int x=1;int y=x, z=x*y; 3 for (x = 1; x <= 9; x++) 4 { 5 for (y = 1; y <= x; y++) 6 ...
分类:其他好文   时间:2015-08-06 00:20:04    阅读次数:97
九乘九乘法表格
using System;using System.Collections.Generic;using System.Linq;using System.Text;namespace 九乘九乘法表格{ class Program { static void Main(str...
分类:其他好文   时间:2015-08-05 23:55:27    阅读次数:237
循环例子
九九乘法表 int?main() { int?i,j; for(i=1;i<=9;i++) { for(j=1;j<=i;j++) printf("%d*%d=%d??",i,j,i*j); printf("\n"); } system("pause"); return?0; } 打印菱形两角 * *?*? *?*?* *...
分类:其他好文   时间:2015-08-05 22:49:39    阅读次数:157
九九乘法表
using System;using System.Collections.Generic;using System.Linq;using System.Text;namespace ConsoleApplication55{ class Program { static ...
分类:其他好文   时间:2015-08-05 21:41:19    阅读次数:86
输出九九乘法表
for(inti=1;i<=10;i++)for(inta=1;a<=10;a++){console.Write(a+"*"+i+"="+(a*i)+"/n");}console.WriteLine(); 7-200能被7整除的数 for (int i = 1; i <= 200; i++) ...
分类:其他好文   时间:2015-08-05 17:38:31    阅读次数:100
九九乘法表
using System;using System.Collections.Generic;using System.Linq;using System.Text;namespace ConsoleApplication45{ class Program { static ...
分类:其他好文   时间:2015-08-04 22:28:19    阅读次数:91
jquery实现99乘法表的动态显示
主要实现的功能是点击完按钮以后,页面打印九九乘法表。使用的jquery的版本为1.10.2Insert title here点击显示
分类:Web程序   时间:2015-08-04 20:39:15    阅读次数:799
使用whIle循环语句和变量打印九九乘法表
-设置i变量declare @i int --设置j变量declare @j int --设置乘法表变量declare @chengfabiao varchar(1000)--给i,j,@chengfabiao赋初始值select @i=9,@j=1,@chengfabiao=''--使用whI.....
分类:其他好文   时间:2015-07-30 20:49:04    阅读次数:185
980条   上一页 1 ... 85 86 87 88 89 ... 98 下一页
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!