返回列表 發帖
  1. public class Skr
  2. {
  3.     public static void main(String gg[])
  4.     {
  5.         int x=5,y=3;
  6.         System.out.println(x+" + "+y+" = "+(x+y));
  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.     }
  12. }
複製代碼
hahahahahahahaha

TOP

返回列表