返回列表 發帖
本帖最後由 曾挺桂 於 2016-3-11 20:33 編輯
  1. public class Ch03.1415
  2. {
  3.     public static void main(String args[])
  4.     {   
  5.         int x=5, y=3;
  6.             System.out.println("當x為5,y為3時");
  7.             System.out.println("x+y="+(x+y));
  8.             System.out.println("x-y="+(x-y));
  9.             System.out.println("x*y="+(x*y));
  10.             System.out.println("x/y="+(x/y));
  11.             System.out.println("x%y="+(x%y));
  12.     }
  13. }
複製代碼

TOP

返回列表