返回列表 發帖
  1. import java.util.Scanner;
  2. public class Ch01
  3. {
  4.             static Scanner s=new Scanner(System.in);
  5.             public static void main(String[] args)
  6.             {   
  7.                 int x,y;
  8.                 System.out.print("輸入分子: ");
  9.                 x=s.nextInt();
  10.                 System.out.print("輸入分母: ");
  11.                 y=s.nextInt();
  12.                 System.out.println(x+"/"+y+"="+(x/y));
  13.             }
  14. }
複製代碼

TOP

返回列表