- import java.io.Console;
- public class Ch05
- {
- public static void main(String args[])
- {
- int x,y,z;
- Console c=System.console();
- x=Integer.parseInt(c.readLine("輸入X的值:"));
- y=Integer.parseInt(c.readLine("輸入y的值:"));
- z=Integer.parseInt(c.readLine("輸入z的值:"));
- System.out.println("x+y+z="+(x+y+z));
- System.out.println("x-y-z="+(x-y-z));
- System.out.println("x*y*z="+(x*y*z));
- System.out.println("x/y/z="+(x/y/z));
- System.out.println("x%y%z="+(x%y%z));
- }
- }
複製代碼 |