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的版本为1.10.2Insert title here点击显示
分类:
Web程序 时间:
2015-08-04 20:39:15
阅读次数:
799
-设置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