خرید بک لینک

gameover.blog.ir

/* Source code to create a simple calculator for addition, subtraction, multiplication and division using switch...case statement in C++ programming. */

# include <iostream>
using namespace std;
int main()
{
    char o;
    float num1,num2;
    cout << "Enter operator either + or - or * or /: ";
    cin >> o;
    cout << "Enter two operands: ";
    cin >> num1 >> num2;
    switch(o) {
        case '+':
            cout << num1+num2;
            break;
        case '-':
            cout << num1-num2;
            break;
        case '*':
            cout << num1*num2;
            break;
        case '/':
            cout << num1/num2;
            break;
        default:
            /* If operator is other than +, -, * or /, error message is shown */
            cout << "Error! operator is not correct";
            break;
    }
    retu 0;
}

Output


Enter operator either + or - or * or divide : -
Enter two operands: 
3.4
8.4
3.4 - 8.4 = -5.0

برچسب: ساخت یک ماشین کنترلی ساده,ساخت یک ماشین ساده,ساخت یک ماشین کنترلی,ساخت یک ماشین الکتریکی,ساخت یک ماشین,ساخت یک ماشین ساده با آرمیچر,ساخت یک ماشین الکتریکی ساده,ساخت یک ماشین بادکنکی,ساخت یک ماشین اسباب بازی,ساخت یک ماشین کوچک, نویسنده: ایلیا حیدری تاريخ: شنبه 17 مهر 1395 ساعت: 2:10

صفحه بندی