c++編寫簡單的計算器程序
更新時間:2016年05月04日 09:11:17 作者:Schopenhz
用c++語言實現(xiàn)一個簡單的計算器,新手作品,僅僅包括基本的加減乘除運算。希望能夠給菜鳥們一些啟發(fā)
首先來看下本人的開發(fā)環(huán)境
系統(tǒng):win7
電腦:dell
運行環(huán)境:vs2015
語言:c++
簡單計算器代碼
//四則運算
#include "stdafx.h"
#include<iostream>
#include<stdio.h>
using namespace std;
void add()
{
printf("輸入要計算的加數(shù)(例如a b)\n");
int adda=0, addb=0,addc=0;
cin >> adda;
cin >> addb;
addc = adda+addb;
cout <<adda<<"加"<<addb<< "等于" << addc << endl;
}
void substraction()
{
printf("輸入要計算的減數(shù)(例如a b)\n");
int suba = 0, subb = 0, subc = 0;
cin >> suba;
cin >> subb;
subc = suba-subb;
cout <<suba<<"減"<<subb<< "等于" << subc << endl;
}
void multiplication()
{
printf("輸入要計算的乘數(shù)(例如a b)\n");
int mula = 0, mulb = 0, mulc = 0;
cin >> mula;
cin >> mulb;
mulc = mula*mulb;
cout <<mula<<"乘"<<mulb<< "等于" << mulc << endl;
}
void division()
{
printf("輸入要計算的除數(shù)(例如a b)\n");
int dsa = 0, dsb = 0, dsc = 0,dsd=0;
cin >> dsa;
cin >> dsb;
dsc = dsa/dsb;
dsd = dsa%dsb;
cout <<dsa<<"除"<<dsb<< "等于" << dsc <<"余"<<dsd<<endl;
}
void operation()//運算函數(shù)
{
printf("輸入數(shù)據(jù)選擇做那種運算\n");
printf("輸入0選擇退出,1做加法,2做減法,3做乘法,4做除法(保留余數(shù))\n");
int operatione = 0;
cin >> operatione;
cout << endl;
try
{
if (operatione == 1)
{
//加法
add();
}
else if (operatione == 2)
{
//減法
substraction();
}
else if (operatione == 3)
{
//乘法
multiplication();
}
else if (operatione == 4)
{
//出發(fā)
division();
}
else if (operatione == 0)
{
exit(0);
}
else
{
throw 1;
}
}
catch (int i)
{
cout << "輸入錯誤" << endl;
}
operation();
}
int main()
{
printf("歡迎使用本計算器");
operation();
return 0;
}
代碼比較簡單,希望大家能夠喜歡
相關(guān)文章
VS?Code安裝及C、C++環(huán)境配置詳細(xì)教程(Windows系統(tǒng))
這篇文章主要介紹了VS?Code安裝及C、C++環(huán)境配置詳細(xì)教程(Windows系統(tǒng)),本文通過圖文并茂的形式給大家介紹的非常詳細(xì),對大家的學(xué)習(xí)或工作具有一定的參考借鑒價值,需要的朋友可以參考下2023-02-02
C++?qt實現(xiàn)打開關(guān)閉狀態(tài)按鈕的代碼
這篇文章主要介紹了C++?qt實現(xiàn)打開關(guān)閉狀態(tài)按鈕,用QCheckBox可以實現(xiàn),只要在選擇與未選擇的狀態(tài)設(shè)置不同的圖片即可完成,代碼簡單易懂,需要的朋友可以參考下2022-03-03
更優(yōu)雅的C++字符串格式化實現(xiàn)方法詳解
在用C++編寫代碼時,經(jīng)常需要用到字符串拼接及格式化,尤其是在拼寫sql語句時。所以本文為大家介紹了更優(yōu)雅的C++字符串格式化實現(xiàn)方法,希望對大家有所幫助2023-04-04

