Board logo

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

作者: tonyh    時間: 2019-6-30 14:54     標題: 資料輸入 (三)

[attach]6701[/attach]

  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. }
複製代碼





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