Board logo

標題: 變數宣告 [打印本頁]

作者: tonyh    時間: 2013-5-27 19:29     標題: 變數宣告

  1. public class ch03    //類別
  2. {
  3.     public static void main(String args[])   //主方法
  4.     {
  5.         int x=15,y=10;
  6.         System.out.println("當x的值為"+x+",y的值為"+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.         System.out.println("x%y="+(x%y));
  12.     }
  13. }
複製代碼





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