標題:
108九九乘法表
[打印本頁]
作者:
may
時間:
2012-2-11 09:49
標題:
108九九乘法表
程式由左至右顯示.....
作者:
TOM
時間:
2012-2-18 09:36
public class jva108
{
public static void main(String arg[])
{
for(int j=1;j<=9;j++)
{
for(int i=1;i<=9;i++)
{
System.out.printf("%d*%d=%d\t",j,i,j*i);
}
System.out.println();
}
}
}
複製代碼
作者:
kim
時間:
2012-2-18 10:08
#include<iostream>
#include<cstdlib>
using namespace std;
int main()
{
for(int i=1;i<=9;i++)
{
//cout<<i<<endl;
for(int j=1;j<=9;j++)
{
cout<<i<<"*"<<j<<"="<<i*j<<"\t";
}
cout<<"\n";
}
system("pause");
return 0;
}
複製代碼
作者:
johnson
時間:
2012-7-16 09:11
阿嘉放的是C++的程式碼!
1 n+ _6 p' Y1 L# ~5 b
你沒做吧~~
public class TQC108 {
public static void main(String arg[]) {
for (int j = 1; j <= 9; j++) {
for (int i = 1; i <= 9; i++) {
System.out.printf("%d*%d=%d\t", j, i, j * i);
}
System.out.println();
}
}
}
複製代碼
歡迎光臨 種子論壇 | 高雄市資訊培育協會學員討論區 (http://istak.org.tw/seed/)
Powered by Discuz! 7.2