91超碰碰碰碰久久久久久综合_超碰av人澡人澡人澡人澡人掠_国产黄大片在线观看画质优化_txt小说免费全本

溫馨提示×

java實現計算器代碼怎么寫

小億
98
2024-02-23 17:18:29
欄目: 編程語言

以下是一個簡單的Java計算器代碼示例:

import java.util.Scanner;

public class Calculator {
    public static void main(String[] args) {
        Scanner scanner = new Scanner(System.in);
        
        System.out.println("Enter the first number: ");
        double num1 = scanner.nextDouble();
        
        System.out.println("Enter the second number: ");
        double num2 = scanner.nextDouble();
        
        System.out.println("Enter the operation (+, -, *, /): ");
        char operation = scanner.next().charAt(0);
        
        double result = 0;
        
        switch(operation) {
            case '+':
                result = num1 + num2;
                break;
            case '-':
                result = num1 - num2;
                break;
            case '*':
                result = num1 * num2;
                break;
            case '/':
                result = num1 / num2;
                break;
            default:
                System.out.println("Invalid operation.");
        }
        
        System.out.println("Result: " + result);
        
        scanner.close();
    }
}

此代碼通過用戶輸入兩個數和運算符,然后根據運算符執行相應的運算,最終輸出結果。您可以根據自己的需求對此代碼進行修改和擴展。

0
六枝特区| 黔西| 虞城县| 常州市| 中西区| 镇平县| 东安县| 芦山县| 海晏县| 龙陵县| 阿坝| 石屏县| 寿阳县| 黄浦区| 嫩江县| 辽中县| 上饶市| 大同市| 万全县| 丹巴县| 泌阳县| 富裕县| 阜新| 平武县| 长兴县| 麦盖提县| 榆林市| 镶黄旗| 大足县| 河北区| 尉氏县| 巴青县| 阿拉善盟| 汉寿县| 罗甸县| 阜康市| 白城市| 湖北省| 邳州市| 宁远县| 沙洋县|