標題:
復習108
[打印本頁]
作者:
jerryclass
時間:
2012-7-7 11:22
標題:
復習108
九九乘法表
作者:
kim
時間:
2012-7-7 11:23
public class TQC108 {
/**
* @param args
*/
public static void main(String[] args) {
// TODO Auto-generated method stub
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();
}
}
}
複製代碼
作者:
johnson
時間:
2012-7-7 11:23
public class TQC108
{
public static void main(String[] args)
{
for(int i=1;i<=9;i++)
{
for(int j=1;j<=9;j++)
{
System.out.printf("%d*%d=%d\t",i,j,i*j);
}
}
System.out.println();
}
}
複製代碼
作者:
許逸瑋
時間:
2012-7-7 11:26
import java.lang.*;
public class TQC108
{
public static void main(String[] args)
{
for(int i = 1 ; i< 10 ; i++){
for(int j = 1 ; j <10 ; j++)
System.out.print(""+i+"*"+j+"="+(i*j)+"\t");
System.out.println();
}
}
}
複製代碼
歡迎光臨 種子論壇 | 高雄市資訊培育協會學員討論區 (http://istak.org.tw/seed/)
Powered by Discuz! 7.2