返回列表 發帖
  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. }
複製代碼
巨槌瑞斯!!!誇爪!!!哈哈哈哈!!!
還敢下來阿冰鳥

TOP

返回列表