Board logo

標題: [隨堂測驗] 九九乘法表 (二) [打印本頁]

作者: 陳品肇    時間: 2019-7-6 15:30     標題: [隨堂測驗] 九九乘法表 (二)

運用巢狀 while迴圈 , 寫一個排列整齊的九九乘法表如下圖所示.
提示: \t 代表鍵盤上的Tab鍵, 可用來對齊
[attach]6833[/attach]
作者: 蔡依宸    時間: 2019-7-6 16:50

  1. public class Class {

  2.         public static void main(String[] args) {
  3.                 // TODO 自動產生的方法 Stub
  4.              int i=1,j=1;
  5.              while(i<=9)
  6.              {
  7.                      while(j<=9)
  8.                      {
  9.                              System.out.print(i+"*"+j+"="+i*j+"\t");
  10.                              j++;
  11.                      }
  12.                      i++;
  13.                      j=1;
  14.                      System.out.println();
  15.              }
  16.         }

  17. }
複製代碼

作者: 黃安立    時間: 2019-7-6 16:52

  1. public class Ch01
  2. {
  3.     public static void main(String args[])
  4.     {
  5.         int i=1;
  6.         while(i<=9)
  7.         {
  8.             int j=1;
  9.             while(j<=9)
  10.             {
  11.                 System.out.print(i+"x"+j+"="+(i*j)+"\t");
  12.                 j++;
  13.             }
  14.         }
  15.         }
  16. }
  17.      
複製代碼

作者: 譚詩澐    時間: 2019-7-6 16:57

本帖最後由 譚詩澐 於 2019-7-6 16:58 編輯
  1. public class CH76 {

  2.         public static void main(String[] args) {
  3.                 // TODO 自動產生的方法 Stub
  4.         int i=1, j=1;
  5.         while(i<=9)
  6.         {
  7.                 while(j<=9)
  8.                 {
  9.                         System.out.print(i+"*"+j+"="+(i*j)+"\t");
  10.                         j++;
  11.                 }
  12.           i++;
  13.           j=1;
  14.           System.out.println();
  15.         }
  16.         }
  17. }
複製代碼

作者: 蔡季庭    時間: 2019-7-6 16:57

  1. public class Ch {

  2.         public static void main(String[] args) {
  3.                 // TODO 自動產生的方法 Stub
  4.              int i=1,j=1;
  5.              while(i<=9)
  6.              {
  7.                      while(j<=9)
  8.                      {
  9.                              System.out.print(i+"*"+j+"="+i*j+"\t");
  10.                              j++;
  11.                      }
  12.                      i++;
  13.                      j=1;
  14.                      System.out.println();
  15.              }
  16.         }

  17. }
複製代碼

作者: 戴安利    時間: 2019-7-6 16:58

  1. package haha;

  2. public class haha {
  3.         public static void main(String[] args)
  4.     {
  5.            int i=1;
  6.            int j=1;
  7.            while(i<10)
  8.            {
  9.                while(j<10)
  10.                {
  11.                        System.out.print(i+"*"+j+"="+i*j+"\t");
  12.                        j++;
  13.                }
  14.                 j=1;
  15.                 i++;
  16.                 System.out.println();               
  17.            }
  18.         }
  19. }
複製代碼

作者: 戴偉宸    時間: 2019-7-6 17:11

  1. public class work {

  2.         public static void main(String[] args) {
  3.                 int i=1,j=1;
  4.                 while(i<10)
  5.                 {
  6.                        
  7.                         while(j<10)
  8.                         {
  9.                                 System.out.print(i+"*"+j+"="+i*j+"\t");
  10.                                 j++;
  11.                         }
  12.                                
  13.                         i++;
  14.                         j=1;
  15.                         System.out.println();
  16.                 }
  17.         
  18.         }

  19. }
複製代碼

作者: 戴唯陞    時間: 2019-7-6 17:12

  1. public class jvav01 {

  2.         public static void main(String[] args) {
  3.                 // TODO 自動產生的方法 Stub
  4.                 int i = 1, j = 1;

  5.                 while (i <= 9) {
  6.                         while (j <= 9)

  7.                         {
  8.                                 System.out.print(i + "*" + j + "=" + i * j + "\t");
  9.                                 j++;
  10.                         }
  11.                         i++;
  12.                         j = 1;
  13.                         System.out.println();
  14.                 }
  15.         }
  16. }
複製代碼

作者: 章幼莛    時間: 2019-7-13 14:54

  1. public class Ch01 {

  2.         public static void main(String[] args) {
  3.                 int i=1;
  4.                 while(i<=9)
  5.                 {
  6.                         int j=1;
  7.                         while(j<=9)
  8.                         {
  9.                                 System.out.print(i+"*"+j+"="+i*j+"\t");
  10.                                 j++;
  11.                         }
  12.                         i++;
  13.                         System.out.println();               
  14.                 }
  15.                
  16.         }

  17. }
複製代碼

作者: 陳柏霖    時間: 2019-7-13 15:02

  1. public class World {

  2.         public static void main(String[] args) {
  3.                 // TODO 自動產生的方法 Stub

  4.                 int i=1;
  5.                 while(i<=9)
  6.                 {
  7.                         int j=1;
  8.                         while(j<=9)
  9.                         {
  10.                                 System.out.print(i+"*"+j+"="+i*j+"\t");
  11.                                 j++;
  12.                         }
  13.                         System.out.println();
  14.                         i++;
  15.                 }
  16.         }

  17. }
複製代碼

作者: 洪子涵    時間: 2019-8-9 15:25

  1. public class Ch01 {

  2.         public static void main(String[] args) {
  3.                 int i=1;
  4.                 while(i<=9)
  5.                 {
  6.                         int j=1;
  7.                         while(j<=9)
  8.                         {
  9.                                 System.out.print(i+"*"+j+"="+i*j+"\t");
  10.                                 j++;
  11.                         }
  12.                         System.out.println();
  13.                         i++;
  14.                 }
  15.         }

  16. }
複製代碼

作者: 洪藜芸    時間: 2019-8-9 15:26

  1. public class Ci {

  2.         public static void main(String[] args) {
  3.                 // TODO 自動產生的方法 Stub
  4.                 int i=1;
  5.                 while(i<=9)
  6.                 {
  7.                         int a=1;
  8.                         while(a<=9)
  9.                         {
  10.                                 System.out.print(i+"*"+a+"="+i*a+"\t");
  11.                                 a++;
  12.                         }
  13.                         System.out.println();
  14.                         i++;
  15.                 }

  16.         }

  17. }
複製代碼





歡迎光臨 種子論壇 | 高雄市資訊培育協會學員討論區 (http://istak.org.tw/seed/) Powered by Discuz! 7.2