返回列表 發帖

電話簿 (二)

本帖最後由 tonyh 於 2012-11-24 17:04 編輯
  1. import java.io.Console;
  2. public class ch42
  3. {
  4.     public static void main(String args[])
  5.     {
  6.         String name;
  7.         int sum=0;
  8.         String tel[][]={{"大雄","0980-454666"},
  9.                         {"技安","0911-333898"},
  10.                         {"宜靜","0922-999579"},
  11.                         {"阿福","0938-234567"},
  12.                         {"小叮噹","0911-864356"}};
  13.         Console console=System.console();
  14.         System.out.println("***小米的電話簿***");
  15.         System.out.println("1.輸入'all'顯示完整電話簿\n2.輸入姓名查詢目標對象的電話\n3.輸入'end'結束程式");
  16.         System.out.print("請在此輸入: ");
  17.         name=console.readLine();
  18.         if(name.equals("all")==true)
  19.         {
  20.              System.out.println("編號\t姓名\t電話");
  21.              System.out.println("============================");
  22.              for(int i=0; i<=4; i++)
  23.              {
  24.                 System.out.print((i+1)+"\t");
  25.                 for(int j=0; j<=1;j++)
  26.                 {
  27.                     System.out.print(tel[i][j]+"\t");
  28.                 }
  29.                 System.out.println();
  30.              }
  31.         }else
  32.         {
  33.              for(int i=0; i<=4; i++)
  34.              {
  35.                 if(name.equals(tel[i][0])==true)
  36.                 {
  37.                     System.out.println(tel[i][0]+"的電話是"+tel[i][1]);
  38.                     sum++;
  39.                 }
  40.              }
  41.              if(sum==0)
  42.              {
  43.                  System.out.println("查無此人!");
  44.              }
  45.         }
  46.     }
  47. }
複製代碼
附件: 您需要登錄才可以下載或查看附件。沒有帳號?註冊

本帖最後由 黃博鴻 於 2012-11-24 17:07 編輯
  1. import java.io.Console;
  2. public class ch42
  3. {
  4.    public static void main(String args[])
  5.    {
  6.          Console console=System.console();
  7.          String name;
  8.          System.out.println("***明久的電話簿***");
  9.          System.out.println("1.請輸入'all'以顯示完整電話簿\n2.輸入名字以顯示目標電話\n3.輸入'end'以結束程式");
  10.          System.out.print("請輸入: ");
  11.          name=console.readLine();
  12.       String tel[][]={{"板本雄二","0985-326124"},{"土屋康太","0987-517640"}
  13.                    ,{"木下秀吉","0956-784356"},{"島田美波","0934-521345"},
  14.                    {"姬路瑞希","0965-521521"},{"工藤愛子","0956-599599"}};
  15.        if(name.equals("all")==true)
  16.       {
  17.         System.out.println("編號\t姓名\t\t電話號碼");
  18.         System.out.println("=====================================");
  19.         for(int i=0; i<=5; i++)
  20.         {
  21.            System.out.print((i+1)+"\t");
  22.            for(int j=0; j<=1; j++)
  23.            {
  24.               System.out.print(tel[i][j]+"\t");
  25.            }
  26.           System.out.println();
  27.         }
  28.       } else
  29.       {
  30.          for(int i=0; i<=5; i++)
  31.          {
  32.            if(name.equals(tel[i][0])==true)
  33.            {
  34.             System.out.println("此人的電話號碼"+tel[i][1]);
  35.             break;
  36.            }else
  37.            {
  38.               if(name.equals(tel[0][0])==false && name.equals(tel[1][0])==false
  39.                && name.equals(tel[2][0])==false && name.equals(tel[3][0])==false
  40.                 && name.equals(tel[4][0])==false && name.equals(tel[5][0])==false)
  41.               {
  42.                 System.out.println("輸入錯誤");
  43.                 break;
  44.               }
  45.               continue;
  46.            }
  47.          }
  48.       }
  49.    }
  50. }
複製代碼

TOP

  1. import java.io.Console;
  2. public class ch42
  3. {
  4.     public static void main(String args[])
  5.     {
  6.         String name;
  7.         int sum=0;
  8.         String tel[][]={{"大雄","0980-454666"},
  9.                         {"技安","0911-333898"},
  10.                         {"宜靜","0922-999579"},
  11.                         {"阿福","0938-234567"},
  12.                         {"小叮噹","0911-864356"}};
  13.         Console console=System.console();
  14.         System.out.println("***##的電話簿***");
  15.         System.out.println("1.輸入'all'顯示完整電話簿\n2.輸入姓名查詢目標對象的電話\n3.輸入'end'結束程式");
  16.         System.out.print("請在此輸入: ");
  17.         name=console.readLine();
  18.         if(name.equals("all")==true)
  19.         {
  20.              System.out.println("編號\t姓名\t電話");
  21.              System.out.println("============================");
  22.              for(int i=0; i<=4; i++)
  23.              {
  24.              System.out.print((i+1)+"\t");
  25.              for(int j=0; j<=1;j++)
  26.              {
  27.                 System.out.print(tel[i][j]+"\t");
  28.              }
  29.              System.out.println();
  30.         }
  31.         }else
  32.         {
  33.              for(int i=0; i<=4; i++)
  34.         {
  35.              if(name.equals(tel[i][0])==true)
  36.              {
  37.                 System.out.println(tel[i][0]+"的電話是"+tel[i][1]);
  38.                 sum++
  39.              }
  40.         }
  41.         if(sum==0)
  42.         {
  43.              System.out.println("查無此人!");
  44.         }
  45.     }
  46. }
  47. }
複製代碼

TOP

  1. import java.io.Console;
  2. public class ch42
  3. {
  4.    public static void main(String args[])
  5.    {
  6.          Console console=System.console();
  7.          String name;
  8.          int sum=0;
  9.          System.out.println("***明久的電話簿***");
  10.          System.out.println("1.請輸入'all'以顯示完整電話簿\n2.輸入名字以顯示目標電話\n3.輸入'end'以結束程式");
  11.          System.out.print("請輸入: ");
  12.          name=console.readLine();
  13.       String tel[][]={{"板本雄二","0985-326124"},{"土屋康太","0987-517640"}
  14.                    ,{"木下秀吉","0956-784356"},{"島田美波","0934-521345"},
  15.                    {"姬路瑞希","0965-521521"},{"工藤愛子","0956-599599"}};
  16.        if(name.equals("all")==true)
  17.       {
  18.         System.out.println("編號\t姓名\t\t電話號碼");
  19.         System.out.println("=====================================");
  20.         for(int i=0; i<=5; i++)
  21.         {
  22.            System.out.print((i+1)+"\t");
  23.            for(int j=0; j<=1; j++)
  24.            {
  25.               System.out.print(tel[i][j]+"\t");
  26.            }
  27.           System.out.println();
  28.         }
  29.       } else
  30.       {
  31.          for(int i=0; i<=5; i++)
  32.          {
  33.            if(name.equals(tel[i][0])==true)
  34.            {
  35.             System.out.println(tel[i][0]+"的電話號碼"+tel[i][1]);
  36.             sum++;
  37.            }
  38.          }
  39.          if(sum==0)
  40.          {
  41.            System.out.println("輸入錯誤");
  42.          }
  43.       }
  44.    }
  45. }
複製代碼

TOP

  1. import java.io.Console;
  2. public class ch42
  3. {
  4.     public static void main(String args[])
  5.     {
  6.         String name;
  7.         int sum;
  8.         String tel[][]={{"大雄","0980-564561"},
  9.                         {"小夫","0911-333898"},
  10.                         {"靜香","0922-999579"},
  11.                         {"胖虎","0938-244567"},
  12.                         {"小叮噹","0947-864356"}};
  13.         Console console=System.console();
  14.         System.out.println("***小米的電話簿***");
  15.         System.out.println("1.輸入'all'顯示完整電話簿\n2.輸入姓名查詢目標對象的電話\n3.輸入'end'結束程式");
  16.         System.out.print("請在此輸入: ");
  17.         name=console.readLine();
  18.         if(name.equals("all")==true)
  19.         {
  20.              System.out.println("編號\t姓名\t電話");
  21.              System.out.println("============================");
  22.              for(int i=0; i<=4; i++)
  23.              {
  24.                 System.out.print((i+1)+"\t");
  25.                 for(int j=0; j<=1;j++)
  26.                 {
  27.                     System.out.print(tel[i][j]+"\t");
  28.                 }
  29.                 System.out.println();
  30.              }
  31.         }else
  32.         {
  33.              for(int i=0; i<=4; i++)
  34.              {
  35.                 if(name.equals(tel[i][0])==true)
  36.                 {
  37.                     System.out.println(tel[i][0]+"的電話是"+tel[i][1]);
  38.                     sum++;
  39.                 }
  40.              }
  41.              if(sum==0)
  42.              {
  43.                  System.out.println("查無此人!");
  44.              }
  45.         }
  46.     }
  47. }
複製代碼

TOP

  1. import java.io.*;
  2. public class phone {
  3.         public static void main(String[] args) {
  4. int sum=0;
  5.                 String tel[][]={{"甲","0912-123456"},
  6.                                                 {"乙","0923-234567"},
  7.                                                 {"丙","0934-345678"},
  8.                                                 {"丁","0945-456789"},
  9.                                                 {"戊","0956-567891"}};
  10.                 Console console=System.console();
  11.                 System.out.println("***小米的電話簿***");
  12.                 System.out.println("1.輸入all顯示完整電話簿\n2.輸入姓名查詢目標對象的電話\n3.輸入end結束程式");
  13.                 String name;
  14.                 name=console.readLine();
  15.                 if(name.equals("all")==true){
  16.                         for(int i=0;i<5;i++){
  17.                                 System.out.print((i+1)+"\t");
  18.                                 for(int j=0;j<2;j++){
  19.                                         System.out.println(tel[i][j]);
  20.                                 }
  21.                         }

  22.                     }else{
  23.                   for(int i=0;i<5;i++){
  24.                     if(name.equals(tel[i][0])==true){
  25.                       System.out.println(tel[i][0]+"\t"+tel[i][1]);
  26.                       sum++;
  27.                     }
  28.                     }
  29.                     if(sum==0)
  30.                     System.out.println("查無此人");
  31.                 }
  32.           }
  33.    }
複製代碼
陳彥綸

TOP

  1. import java.io.Console;
  2. public class ch42
  3. {
  4.     public static void main(String args[])
  5.     {
  6.         String name;
  7.         int sum=0;
  8.         String tel[][]={{"大雄","0980-454666"},
  9.                         {"技安","0911-333898"},
  10.                         {"宜靜","0922-999579"},
  11.                         {"阿福","0938-234567"},
  12.                         {"小叮噹","0911-864356"}};
  13.         Console console=System.console();
  14.         System.out.println("***小米的電話簿***");
  15.         System.out.println("1.輸入'all'顯示完整電話簿\n2.輸入姓名查詢目標對象的電話\n3.輸入'end'結束程式");
  16.         System.out.print("請在此輸入: ");
  17.         name=console.readLine();
  18.         if(name.equals("all")==true)
  19.         {
  20.              System.out.println("編號\t姓名\t電話");
  21.              System.out.println("============================");
  22.              for(int i=0; i<=4; i++)
  23.              {
  24.                 System.out.print((i+1)+"\t");
  25.                 for(int j=0; j<=1;j++)
  26.                 {
  27.                     System.out.print(tel[i][j]+"\t");
  28.                 }
  29.                 System.out.println();
  30.              }
  31.         }else
  32.         {
  33.              for(int i=0; i<=4; i++)
  34.              {
  35.                 if(name.equals(tel[i][0])==true)
  36.                 {
  37.                     System.out.println(tel[i][0]+"的電話是"+tel[i][1]);
  38.                     sum++;
  39.                 }
  40.              }
  41.              if(sum==0)
  42.              {
  43.                  System.out.println("查無此人!");
  44.              }
  45.         }
  46.     }
  47. }
複製代碼

TOP

  1. import java.io.Console;
  2. public class ch42
  3. {
  4.     public static void main(String args[])
  5.     {
  6.         String name;
  7.         int sum=0;
  8.         String tel[][]={{"大雄","0980-454666"},
  9.                         {"技安","0911-333898"},
  10.                         {"宜靜","0922-999579"},
  11.                         {"阿福","0938-234567"},
  12.                         {"小叮噹","0911-864356"}};
  13.         Console console=System.console();
  14.         System.out.println("***小米的電話簿***");
  15.         System.out.println("1.輸入'all'顯示完整電話簿\n2.輸入姓名查詢目標對象的電話\n3.輸入'end'結束程式");
  16.         System.out.print("請在此輸入: ");
  17.         name=console.readLine();
  18.         if(name.equals("all")==true)
  19.         {
  20.              System.out.println("編號\t姓名\t電話");
  21.              System.out.println("============================");
  22.              for(int i=0; i<=4; i++)
  23.              {
  24.                 System.out.print((i+1)+"\t");
  25.                 for(int j=0; j<=1;j++)
  26.                 {
  27.                     System.out.print(tel[i][j]+"\t");
  28.                 }
  29.                 System.out.println();
  30.              }
  31.         }else
  32.         {
  33.              for(int i=0; i<=4; i++)
  34.              {
  35.                 if(name.equals(tel[i][0])==true)
  36.                 {
  37.                     System.out.println(tel[i][0]+"的電話是"+tel[i][1]);
  38.                     sum++;
  39.                 }
  40.              }
  41.              if(sum==0)
  42.              {
  43.                  System.out.println("查無此人!");
  44.              }
  45.         }
  46.     }
  47. }
複製代碼

TOP

  1. import java.io.Console;
  2. public class ch42
  3. {
  4.     public static void main(String args[])
  5.     {
  6.         String name;
  7.         int sum=0;
  8.         String tel[][]={{"大雄","0980-454666"},
  9.                         {"技安","0911-333898"},
  10.                         {"宜靜","0922-999579"},
  11.                         {"阿福","0938-234567"},
  12.                         {"小叮噹","0911-864356"}};
  13.         Console console=System.console();
  14.         System.out.println("***小米的電話簿***");
  15.         System.out.println("1.輸入'all'顯示完整電話簿\n2.輸入姓名查詢目標對象的電話\n3.輸入'end'結束程式");
  16.         System.out.print("請在此輸入: ");
  17.         name=console.readLine();
  18.         if(name.equals("all")==true)
  19.         {
  20.              System.out.println("編號\t姓名\t電話");
  21.              System.out.println("============================");
  22.              for(int i=0; i<=4; i++)
  23.              {
  24.                 System.out.print((i+1)+"\t");
  25.                 for(int j=0; j<=1;j++)
  26.                 {
  27.                     System.out.print(tel[i][j]+"\t");
  28.                 }
  29.                 System.out.println();
  30.              }
  31.         }else
  32.         {
  33.              for(int i=0; i<=4; i++)
  34.              {
  35.                 if(name.equals(tel[i][0])==true)
  36.                 {
  37.                     System.out.println(tel[i][0]+"的電話是"+tel[i][1]);
  38.                     sum++;
  39.                 }
  40.              }
  41.              if(sum==0)
  42.              {
  43.                  System.out.println("查無此人!");
  44.              }
  45.         }
  46.     }
  47. }
複製代碼

TOP

  1. import java.io.Console;
  2. public class ch42
  3. {
  4.     public static void main(String args[])
  5.     {
  6.         int sum=0;
  7.         String name;
  8.         String tel[][]={{"大雄","0980-454666"},
  9.                        {"技安","0911-338888"},
  10.                        {"宜靜","0922-999579"},
  11.                        {"阿福","0938-234567"},
  12.                        {"小叮噹","0911-864356"}};
  13.        Console console=System.console();
  14.        System.out.println("***小米的電話簿***");
  15.        System.out.println("1.輸入'all'顯示完整電話簿\n2.輸入性名查尋目標對象的電話\n3.輸入'end'結束程式");
  16.        System.out.print("請在此輸入: ");
  17.        name=console.readLine();
  18.        if(name.equals("all")==true)
  19.        {
  20.             System.out.println("編號\t姓名\t電話");
  21.             System.out.println("==================================");
  22.             for(int i=0; i<=4; i++)
  23.             {
  24.                System.out.print((i+1)+"\t");
  25.                for(int j=0; j<=1;j++)
  26.                {
  27.                    System.out.print(tel[i][j]+"\t");
  28.                }
  29.                System.out.println();
  30.            }
  31.        }else
  32.           {
  33.              for(int i=0; i<=4; i++)
  34.              {
  35.                if(name.equals(tel[i][0])==true)
  36.                {
  37.                    System.out.println(tel[i][0]+"的電話是"+tel[i][1]);
  38.                    sum++;
  39.                }
  40.              }
  41.              if(sum==0)
  42.              {

  43.                   System.out.println("查無此人!");
  44.              }
  45.           }

  46.     }
  47. }
複製代碼

TOP

返回列表