随便写写:九九乘法表
#include<iostream>using namespace std;
void main()
{
for(int i=1;i<=9;i++)
{
int j=1;
for(;j<=i;j++)
{
cout<<j<<"*"<<i<<"="<<j*i<<"\t";
}
cout<<endl;
}
}
本文摘自: 编程十万个为什么(http://www.) 详细出处请参考:http://www.
2011-04-14 23:55
2011-04-15 06:55
2011-04-15 07:58
2011-04-15 08:21
2011-04-15 16:07
2011-04-15 16:12
不解!
2011-04-15 19:12
2011-04-15 20:45
2011-04-15 21:56
2011-04-16 10:10