標題:
108 9*9乘法表
[打印本頁]
作者:
b790113g
時間:
2011-12-31 20:36
標題:
108 9*9乘法表
public class test{
public static void main(String args[]){
//1*1 1*2 1*3 1*4 1*5
//2*1 2*2 2*3 2*4 2*5
//3*1 3*2 3*3 3*4 3*5
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();
}
}
}
複製代碼
作者:
b1081081
時間:
2012-1-6 21:00
import java.util.*;
import java.lang.*;
public class timetable{
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+" ");
}
System.out.print("\n");
}
}
}
複製代碼
歡迎光臨 種子論壇 | 高雄市資訊培育協會學員討論區 (http://seed.istak.org.tw/)
Powered by Discuz! 7.2