返回列表 發帖

[隨堂測驗] 資料輸入 (三)

本帖最後由 李泳霖 於 2021-2-2 09:21 編輯

  1. import java.io.Console;
  2. public class Ch05
  3. {
  4.     public static void main(String args[])
  5.     {
  6.          int x, y;
  7.          Console c=System.console();
  8.          x=Integer.parseInt(c.readLine("輸入x的值: "));
  9.          y=Integer.parseInt(c.readLine("輸入y的值: "));
  10.          System.out.println("x+y="+(x+y));
  11.          System.out.println("x-y="+(x-y));
  12.          System.out.println("x*y="+(x*y));
  13.          System.out.println("x/y="+(x/y));
  14.          System.out.println("x%y="+(x%y));
  15.     }
  16. }
複製代碼

此帖僅作者可見

TOP

此帖僅作者可見

TOP

此帖僅作者可見

TOP

此帖僅作者可見

TOP

此帖僅作者可見

TOP

此帖僅作者可見

TOP

此帖僅作者可見

TOP

此帖僅作者可見

TOP

此帖僅作者可見

TOP

此帖僅作者可見

TOP

此帖僅作者可見

TOP

此帖僅作者可見

TOP

此帖僅作者可見

TOP

此帖僅作者可見

TOP

返回列表