標題:
函式的建立與執行 (三)
[打印本頁]
作者:
tonyh
時間:
2013-5-29 19:16
標題:
函式的建立與執行 (三)
public class ch28 //類別
{
public static void main(String args[]) //主方法
{
print99();
}
public static void print99()
{
for(int i=1; i<=9; i++)
{
for(int j=1; j<=9; j++)
{
System.out.print(i+"*"+j+"="+(i*j)+"\t"); //\t代表鍵盤上的Tab鍵
}
System.out.println();
}
}
}
複製代碼
歡迎光臨 種子論壇 | 高雄市資訊培育協會學員討論區 (http://seed.istak.org.tw/)
Powered by Discuz! 7.2