標題:
九九乘法表 (一)
[打印本頁]
作者:
tonyh
時間:
2020-2-3 11:04
標題:
九九乘法表 (一)
利用巢狀迴圈,寫一個排列整齊的九九乘法表如下圖所示。
提示:\t 代表鍵盤上的Tab鍵,可用來對齊。
public class Ch14 {
public static void main(String[] args) {
for(int i=1; i<=9; i++)
{
for(int j=1; j<=9; j++)
{
System.out.print(i+"x"+j+"="+(i*j)+"\t");
}
System.out.println();
}
}
}
複製代碼
作者:
蔡承翰
時間:
2020-2-3 11:25
public class Ch01 {
public static void main(String[] args) {
for(int i=1;i<=9;i++) {
for(int j=1;j<=9;j++){
System.out.print(i+"x"+j+"="+(i*j)+"\t");
}
System.out.println();
}
}
}
複製代碼
作者:
劉家銘
時間:
2020-2-3 11:25
public class Ch12 {
public static void main(String[] args)
{
for(int i=1; i<=9; i++)
{
for(int j=1; j<=9; j++)
{
System.out.println(i+"x"+j+"="+(i*j)+"\t");
}
}
}
}
複製代碼
作者:
蘇行一
時間:
2020-2-3 11:26
public class Ch11
{
public static void main(String[] args)
{
for(i=1; i<=9 ;i++)
{
for(j=1 ;j<=9 ;j++)
{
System.out.print(i+"X"+j+"="+(i*j)+"\t");
}
System.out.println();
}
}
}
複製代碼
作者:
楊秉樺
時間:
2020-2-3 11:26
public class Ch14 {
public static void main(String[] args) {
for (int i=1;i<=9;i++)
{
for (int j=1;j<=9;j++)
{
System.out.print(i+"X"+j+"="+(i*j)+"\t");
}
System.out.println();
}
}
}
複製代碼
作者:
盧弘毅
時間:
2020-2-3 11:26
public class Ch12
{
public static void main(String[] args)
{
for(int i=1;i<=9;i+=1)
{
for(int j=1;j<=9;j++)
{
System.out.print(i+"x"+j+"="+(i*j)+"\t");
}System.out.println();
}
}
}
複製代碼
作者:
黃煜城
時間:
2020-2-3 11:26
public class Ch18 {
public static void main(String[] args) {
for(int i=1; i<=9; i++)
{
for(int j=1; j<=9; j++)
{
System.out.print(i+"x"+j+"="+(i*j)+"\t");
}
System.out.println();
}
}
}
複製代碼
作者:
邱翊博
時間:
2020-2-3 11:27
public class umohahyah {
public static void main(String[] args) {
for(int i=1; i<=9; i++)
{
for(int j=1; j<=9; j++)
{
System.out.print(i+"x"+j+"="+(i*j)+"\t");
}
System.out.println();
}
}
}
複製代碼
作者:
蘇宜貞
時間:
2020-2-3 11:27
public class Ch01
{
public static void main(String[] args)
{
for(int i=1; i<=9; i++)
{
for(int j=1; j<=9; j++)
{
System.out.print(i+"x"+j+"="+(i*j)+"\t");
}
System.out.println();
}
}
}
複製代碼
作者:
張宸翔
時間:
2020-2-3 11:27
public class Ch12 {
public static void main(String[] args) {
for(int i=1; i<=9; i+=1)
{
for(int j=1; j<=9; j+=1)
{
System.out.print(i+"x"+j+"="+(i*j)+"\t");
}
System.out.println();
}
}
}
複製代碼
作者:
沙芃妘
時間:
2020-2-3 11:28
public class Ch14 {
public static void main(String[] args) {
for(int i=1; i<=9; i++)
{
for(int j=1; j<=9; j++)
{
System.out.print(i+"x"+j+"="+(i*j)+"\t");
}
System.out.println();
}
}
}
複製代碼
作者:
陳梓瑜
時間:
2020-2-3 11:30
public class Ch17 {
public static void main(String[] args)
{
for(int i=1;i<=9;i++)
{
for(int j=1;j<=9;j++)
{
System.out.print(i+"x"+j+"="+(i*j)+"\t");
}
System.out.println();
}
}
}
複製代碼
作者:
何蕙妘
時間:
2020-2-3 11:33
public class Ch56 {
public static void main(String[] args)
{
for (int i =1;i<=9;i++)
{
for(int y=1;y<=9;y++)
{
System.out.print(i+"x"+y+"="+(i*y)+"\t");
}
System.out.println();
}
}
}
複製代碼
作者:
蘇行一
時間:
2020-2-3 11:46
public class Ch11
{
public static void main(String[] args)
{
for(int i=1; i<=5 ;i++)
{
for(int j=1 ;j<=5-i ;j++)
{
System.out.print(" ");
}
for(int k=1 ;k<=2*i-1 ;k++)
{
System.out.print("*");
}
System.out.println();
}
}
}
複製代碼
作者:
劉家銘
時間:
2020-2-3 15:28
public class Ch12{
public static void main(String args[])
{
int i=1;
while(i<=9)
{
int j=1;
while(j<=9)
{
System.out.print((i+"x"+j+"="+(i*j)+"\t"));
j++;
}
i++;
System.out.println();
}
}
}
複製代碼
歡迎光臨 種子論壇 | 高雄市資訊培育協會學員討論區 (http://istak.org.tw/seed/)
Powered by Discuz! 7.2