Board logo

標題: 五則運算 (二) [打印本頁]

作者: 陳品肇    時間: 2019-8-10 13:12     標題: 五則運算 (二)

  1. public class Ch02
  2. {
  3.      public static void main(String args[])
  4.      {
  5.           System.out.println("5+3="+(5+3));
  6.           System.out.println("5-3="+(5-3));
  7.           System.out.println("5*3="+(5*3));
  8.           System.out.println("5/3="+(5/3));
  9.           System.out.println("5%3="+(5%3));
  10.      }
  11. }
複製代碼

作者: 吳孟修    時間: 2019-8-10 14:48

  1. import java.lang.System;
  2. public class CH02
  3. {
  4.     public static void main(String[] args)
  5.     {
  6.         System.out.println("5+3="+(5+3));
  7.         System.out.println("5-3="+(5-3));
  8.         System.out.println("5*3="+(5*3));
  9.         System.out.println("5/3="+(5/3));
  10.         System.out.println("5%3="+(5%3));
  11.     }

  12. }
複製代碼

作者: 吳孟書    時間: 2019-8-10 14:48

  1. import java.lang.System;
  2. public class Ja{
  3.       public static void main(String[] args){
  4.              System.out.println("5+3="+(5+3));
  5.              System.out.println("5-3="+(5-3));
  6.              System.out.println("5*3="+(5*3));
  7.              System.out.println("5/3="+(5/3));
  8.              System.out.println("5%3="+(5%3));
  9.    }
  10. }
複製代碼

作者: 田宇任    時間: 2019-8-10 14:50

  1. import java.lang.System;
  2. public class king{

  3.       public static void main(String [] args){
  4.       System.out.println("8+3="+(8+3));
  5.       System.out.println("8-3="+(8-3));
  6.       System.out.println("8*3="+(8*3));
  7.       System.out.println("8/3="+(8/3));
  8.       System.out.println("8%3="+(8%3));

  9.       }
  10. }
複製代碼

作者: 湯郡一    時間: 2019-8-10 14:52

  1. import java.lang.System;
  2. public class HelloWorld {

  3.         public static void main(String[] args) {

  4.                
  5.                 System.out.println("5+3= "+(5+3));
  6.                 System.out.println("5-3= "+(5-3));
  7.                 System.out.println("5*3= "+(5*3));
  8.                 System.out.println("5/3= "+(5/3));
  9.                 System.out.println("5%3= "+(5%3));

  10.         }

  11. }
複製代碼

作者: 洪寬瀧    時間: 2019-8-10 14:53

  1. import java.lane.System;
  2. public class ch02 {
  3. public static void main (string [] args) {
  4.   System.out.println("5+6="+(5+6));
  5.   System.out.println("5-6="+(5-6));
  6.   System.out.println("5*6="+(5*6));
  7.   System.out.println("5/6="+(5/6));
  8.   System.out.println("5%6="+(5%6));
  9. }

  10. }
複製代碼





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