Board logo

標題: 資料輸入 (三) [打印本頁]

作者: tonyh    時間: 2019-7-2 09:16     標題: 資料輸入 (三)

  1. import java.io.Console;
  2. public class Ch05
  3. {
  4.     public static void main(String args[])
  5.     {
  6.          int x, y;
  7.          Console c=System.console();
  8.          x=Integer.parseInt(c.readLine("輸入x的值: "));
  9.          y=Integer.parseInt(c.readLine("輸入y的值: "));
  10.          System.out.println("x+y="+(x+y));
  11.          System.out.println("x-y="+(x-y));
  12.          System.out.println("x*y="+(x*y));
  13.          System.out.println("x/y="+(x/y));
  14.          System.out.println("x%y="+(x%y));
  15.     }
  16. }
複製代碼

作者: 古蕾娜    時間: 2019-7-2 09:34

  1. import java.io.Console;
  2. public class Ch06
  3. {
  4.     public static void main(String args[])
  5.     {
  6.       int x.y;
  7.       Console c=System.console();
  8.       x=Integer.parseInt(c.readLine("Enter x's value: "));
  9.       y=Integer.parseInt(c.readLine("Enter y's value: "));
  10.       System.out.println("x+y="+(x+y))
  11.       System.out.println("x-y="+(x-y))
  12.       System.out.println("x*y="+(x*y))
  13.       System.out.println("x/y="+(x/y))
  14.       System.out.println("x%y="+(x%y))
  15.     }
  16. }
複製代碼

作者: 李承洋    時間: 2019-7-2 09:37

  1. import java.io.Console;
  2. public class Ch05
  3. {
  4.     public static void main(String args[])
  5.     {
  6.         int x,y;
  7.         Console c=System.console();
  8.         x=Integer.parseInt(c.readLine("請輸入x的值: "));
  9.         y=Integer.parseInt(c.readLine("請輸入y的值: "));
  10.         System.out.println("x+y="+(x+y));
  11.         System.out.println("x-y="+(x-y));
  12.         System.out.println("x*y="+(x*y));
  13.         System.out.println("x/y="+(x/y));
  14.         System.out.println("x%y="+(x%y));
  15.     }
  16. }
複製代碼

作者: 宋威廷    時間: 2019-7-2 09:37

  1. import java.io.Console;
  2. public class CH05
  3. {
  4.     public static void main(String args[])
  5.     {
  6.         int x,y;
  7.         Console c=System.console();
  8.         x=Integer.parseInt(c.readLine("輸入x的值:"));
  9.         y=Integer.parseInt(c.readLine("輸入y的值:"));
  10.         System.out.println("x+y="+(x+y));  
  11.         System.out.println("x-y="+(x-y));
  12.         System.out.println("x/y="+(x/y));
  13.         System.out.println("x*y="+(x*y));
  14.         System.out.println("x%y="+(x%y));
  15.     }
  16. }
複製代碼

作者: 李佳諭    時間: 2019-7-2 09:37

  1. import java.io.Console;
  2. public class Ch05
  3. {
  4.     public static void main(String args[])
  5.     {
  6.          int x, y;
  7.          Console c=System.console();
  8.          x=Integer.parseInt(c.readLine("輸入x的值: "));
  9.          y=Integer.parseInt(c.readLine("輸入y的值: "));
  10.          System.out.println("x+y= "+(x+y));
  11.          System.out.println("x-y= "+(x-y));
  12.          System.out.println("x*y= "+(x*y));
  13.          System.out.println("x/y= "+(x/y));
  14.          System.out.println("x%y= "+(x%y));


  15.     }


  16. }
複製代碼

作者: 陳璽安    時間: 2019-7-2 09:37

  1. import java.io.Console;
  2. public class Ch05
  3. {
  4.        public static void main(String args[])
  5.        {
  6.             int x, y;
  7.             Console c=System.consoie();
  8.             x=Integer.parseInt(c.readLine("輸入x的值: "));
  9.             y=Integer.parseInt(c.readLine("輸入y的值: "));
  10.             System.out.println("x+y="+(x+y));
  11.             System.out.println("x-y="+(x-y));
  12.             System.out.println("x*y="+(x*y));
  13.             System.out.println("x/y="+(x/y));
  14.             System.out.println("x%y="+(x%y));

  15.        }

  16. }
複製代碼

作者: 陳致翰    時間: 2019-7-2 09:38

  1. import java.io.Console;
  2. public class Ch01
  3. {
  4.     public static void main(String args[])
  5.     {
  6.         int x , y ;
  7.         Console c=System.console();
  8.         x=Integer.parseInt(c.readLine("輸入x的值: "));
  9.         y=Integer.parseInt(c.readLine("輸入y的值: "));
  10.         System.out.println("x+y: "+(x+y));
  11.         System.out.println("x-y: "+(x-y));
  12.         System.out.println("x*y: "+(x*y));
  13.         System.out.println("x/y: "+(x/y));
  14.         System.out.println("x%y: "+(x%y));
  15.     }
  16. }
複製代碼

作者: 葉子于    時間: 2019-7-2 09:38

  1. import java.io.Console;
  2. public class ch05
  3. {
  4.     public static void main(String aargs[])
  5.     {
  6.         float x,y;
  7.         Console c=System.console();
  8.         x=Float.parseFloat(c.readLine("請輸入x的值:"));
  9.         y=Float.parseFloat(c.readLine("請輸入y的值:"));
  10.         System.out.println("x+y="+(x+y));
  11.         System.out.println("x-y="+(x-y));
  12.         System.out.println("x*y="+(x*y));
  13.         System.out.println("x/y="+(x/y));
  14.         System.out.println("x%y="+(x%y));

  15.     }



  16. }
複製代碼

作者: 蔡杰恩    時間: 2019-7-2 09:39

  1. import java.io.Console;
  2. public class Ch08
  3. {
  4.    public static void main(String args[])
  5.    {
  6.         int x,y;
  7.         Console c=System.console();
  8.         x=Integer.parseInt(c.readLine("輸入x的值:"));
  9.         y=Integer.parseInt(c.readLine("輸入y的值:"));
  10.         System.out.println("x+y="+(x+y));
  11.         System.out.println("x-y="+(x-y));
  12.         System.out.println("x*y="+(x*y));
  13.         System.out.println("x/y="+(x/y));
  14.         System.out.println("x%y="+(x%y));

  15.    }

  16. }
複製代碼

作者: 張啟廣    時間: 2019-7-2 09:39

  1. import java.io.Console;
  2. public class Ch05
  3. {
  4.     public static void main(String args[])
  5.     {
  6.      Console c=System.console();
  7.      int x, y;
  8.      x=Integer.parseInt(c.readLine("請輸入x的值: "));
  9.      y=Integer.parseInt(c.readLine("請輸y的值: "));
  10.      System.out.println("x+y="+(x+y));
  11.      System.out.println("x-y="+(x-y));
  12.      System.out.println("x*y="+(x*y));
  13.      System.out.println("x/y="+(x/y));
  14.      System.out.println("x%y="+(x%y));
  15.     }
  16. }
複製代碼

作者: 李從赫    時間: 2019-7-2 09:40

  1. import java.io.Console;
  2. public class Ch05
  3. {
  4.    public static void main(String args[])
  5.    {
  6.        int x, y;
  7.        Console c=System.console();
  8.        x=Integer.parseInt(c.readLine("輸入x的值:   "));
  9.        y=Integer.parseInt(c.readLine("輸入y的值:   "));
  10.        System.out.println("x+y= "+(x+y));
  11.        System.out.println("x-y= "+(x-y));
  12.        System.out.println("x*y= "+(x*y));
  13.        System.out.println("x/y= "+(x/y));
  14.        System.out.println("x%y= "+(x%y));
  15.    }
  16. }
複製代碼

作者: 王煦    時間: 2019-7-2 09:41

  1. import java.io.Console;
  2. public class Ch05
  3. {
  4.     public static void main(String args[])
  5.     {
  6.          int x,y,z;
  7.          Console c=System.console();
  8.          x=Integer.parseInt(c.readLine("輸入X的值:"));
  9.          y=Integer.parseInt(c.readLine("輸入y的值:"));
  10.          z=Integer.parseInt(c.readLine("輸入z的值:"));
  11.           System.out.println("x+y+z="+(x+y+z));
  12.           System.out.println("x-y-z="+(x-y-z));
  13.           System.out.println("x*y*z="+(x*y*z));
  14.           System.out.println("x/y/z="+(x/y/z));
  15.           System.out.println("x%y%z="+(x%y%z));

  16.     }





  17. }
複製代碼

作者: 李沛儒    時間: 2019-7-2 09:41

  1. import java.io.Console;
  2. public class Ch05
  3. {
  4.     public static void main(String args[])
  5.     {
  6.          int x,y;
  7.          Console c=System.console();
  8.          x=Integer.parseInt(c.readLine("輸入x的值: "));
  9.          y=Integer.parseInt(c.readLine("輸入y的值: "));
  10.           System.out.println("x+y="+(x+y)) ;
  11.           System.out.println("x-y="+(x-y)) ;
  12.           System.out.println("x*y="+(x*y)) ;
  13.           System.out.println("x/y="+(x/y)) ;
  14.           System.out.println("x%y="+(x%y)) ;
  15.     }
  16. }
複製代碼

作者: 古昇暘    時間: 2019-7-2 09:41

  1. import java.io.Console;
  2. public class Ch07
  3. {
  4.     public static void main(String args[])
  5.     {
  6.         int x, y;
  7.         Console c=System.console();
  8.         x=Integer.parseInt(c.readLine("Please enter x's value: "));
  9.         y=Integer.parseInt(c.readLine("Please enter y's value: "));
  10.         System.out.println("x+y="+(x+y));
  11.         System.out.println("x-y="+(x-y));
  12.         System.out.println("x*y="+(x*y));
  13.         System.out.println("x/y="+(x/y));
  14.         System.out.println("x%y="+(x%y));
  15.     }
  16. }
複製代碼

作者: 陳柏銓    時間: 2019-7-2 09:42

  1. import java.io.Console;
  2. public class Ch05
  3. {
  4.     public static void main(String args[])
  5.     {
  6.          int x, y;
  7.          Console c=System.console();
  8.          x=Integer.parseInt(c.readLine("輸入x的值: "));
  9.          y=Integer.parseInt(c.readLine("輸入y的值: "));
  10.          System.out.println("x+y="+(x+y));
  11.          System.out.println("x-y="+(x-y));
  12.          System.out.println("x*y="+(x*y));
  13.          System.out.println("x/y="+(x/y));
  14.          System.out.println("x%y="+(x%y));
  15.     }
  16. }
複製代碼

作者: 吳庭慈    時間: 2019-7-2 09:42

  1. import java.io.Console;
  2. public class Ch05
  3. {
  4.     public static void main(String args[])
  5.     {
  6.          int x, y;
  7.          Console c=System.console();
  8.          x=Integer.parseInt(c.readLine("輸入x的值:"));
  9.          y=Integer.parseInt(c.readLine("輸入y的值:"));
  10.          System.out.println("x+y="+(x+y));
  11.          System.out.println("x-y="+(x-y));
  12.          System.out.println("x*y="+(x*y));
  13.          System.out.println("x/y="+(x/y));
  14.          System.out.println("x%y="+(x%y));
  15.     }

  16. }
複製代碼

作者: 林宥杰    時間: 2019-7-2 09:44

  1. import java.io.Console;
  2. public class Ch05
  3. {
  4.    public static void main(String args[])
  5.   {
  6.     int x,y ;
  7.     Console c=System.console();
  8.     x=Integer.parseInt(c.readLine("輸入x的值: "));
  9.     y=Integer.parseInt(c.readLine("輸入y的值: "));
  10.      System.out.println("x+y="+(x+y));
  11.      System.out.println("x-y="+(x-y));
  12.      System.out.println("x*y="+(x*y));
  13.      System.out.println("x/y="+(x/y));
  14.      System.out.println("x%y="+(x%y));
  15.   }
  16. }
複製代碼

作者: 劉欽文    時間: 2019-7-2 09:44

  1. import java.io.Console;
  2. public class Ch05
  3. {
  4.     public static void main(String args[])
  5.     {
  6.         int x,y;
  7.         Console c=System.console();
  8.         x=Integer.parseInt(c.readLine("輸入x的值:  "));
  9.         y=Integer.parseInt(c.readLine("輸入y的值:  "));
  10.         System.out.println("x+y"+(x+y));
  11.         System.out.println("x-y"+(x-y));
  12.         System.out.println("x*y"+(x*y));
  13.         System.out.println("x/y"+(x/y));
  14.         System.out.println("x%y"+(x%y));

  15.     }
  16. }
複製代碼

作者: 陳智鈞    時間: 2019-7-2 09:45

  1. import java.io.Console;
  2. public class Ch05
  3. {
  4.     public static void main(String args[])
  5.     {
  6.     int x, y;
  7.     Console c=System.console();
  8.     x=Integer.parseInt(c.readLine("輸入x的值: "));
  9.     y=Integer.parseInt(c.readLine("輸入y的值: "));
  10.     System.out.println("x+y="+(x+y));
  11.     System.out.println("x-y="+(x-y));
  12.     System.out.println("x*y="+(x*y));
  13.     System.out.println("x/y="+(x/y));
  14.     System.out.println("x%y="+(x%y));
  15.     }
  16. }
複製代碼

作者: 蔡杰希    時間: 2019-7-2 09:48

  1. import java.io.Console;
  2. public class Ch05
  3. {
  4.   public static void main(String args[])
  5.   {
  6.      int x,y;
  7.      Console c=System.console();
  8.      x=Integer.parseInt(c.readLine("輸入x的值"));
  9.      y=Integer.parseInt(c.readLine("輸入y的值"));
  10.      System.out.println("x+y="+(x+y));
  11.      System.out.println("x-y="+(x-y));
  12.      System.out.println("x*y="+(x*y));
  13.      System.out.println("x/y="+(x/y));
  14.      System.out.println("x%y="+(x%y));
  15.   
  16.   }
  17. }
複製代碼

作者: 謝宗佑    時間: 2019-7-2 09:50

  1. import java.io.Console;
  2. public class Ch05
  3. {
  4.   public static void main(String args[])
  5.   {
  6.     int x,y;
  7.     Console c=System.console();
  8.     x=Integer.parseInt(c.readLine("輸入x的值:"));
  9.     y=Integer.parseInt(c.readLine("輸入y的值:"));
  10.     System.out.println("x+y="+(x+y));
  11.     System.out.println("x-y="+(x-y));
  12.     System.out.println("x*y="+(x*y));
  13.     System.out.println("x/y="+(x/y));
  14.     System.out.println("x%y="+(x%y));
  15.   }
  16. }
複製代碼

作者: 賴駿榮    時間: 2019-7-2 10:13

  1. import java.io.Console;
  2. public class ch03
  3. {
  4.     public static void main(String args[])
  5.     {
  6.          int x, y;
  7.          Console c=System.console();
  8.          x=Integer.parseInt(c.readLine("輸入x的值: "));
  9.          y=Integer.parseInt(c.readLine("輸入y的值: "));
  10.          System.out.println("x+y="+(x+y));
  11.          System.out.println("x-y="+(x-y));
  12.          System.out.println("x*y="+(x*y));
  13.          System.out.println("x/y="+(x/y));
  14.          System.out.println("x%y="+(x%y));
  15.     }
  16. }
複製代碼
回復 1# tonyh




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