c++语言编辑简单的计算器,c++编写简单的计算器程序
首先來看下本人的開發環境
系統:win7
電腦:dell
運行環境:vs2015
語言:c++
簡單計算器代碼
//四則運算
#include "stdafx.h"
#include
#include
using namespace std;
void add()
{
printf("輸入要計算的加數(例如a b)\n");
int adda=0, addb=0,addc=0;
cin >> adda;
cin >> addb;
addc = adda+addb;
cout <
}
void substraction()
{
printf("輸入要計算的減數(例如a b)\n");
int suba = 0, subb = 0, subc = 0;
cin >> suba;
cin >> subb;
subc = suba-subb;
cout <
}
void multiplication()
{
printf("輸入要計算的乘數(例如a b)\n");
int mula = 0, mulb = 0, mulc = 0;
cin >> mula;
cin >> mulb;
mulc = mula*mulb;
cout <
}
void division()
{
printf("輸入要計算的除數(例如a b)\n");
int dsa = 0, dsb = 0, dsc = 0,dsd=0;
cin >> dsa;
cin >> dsb;
dsc = dsa/dsb;
dsd = dsa%dsb;
cout <
}
void operation()//運算函數
{
printf("輸入數據選擇做那種運算\n");
printf("輸入0選擇退出,1做加法,2做減法,3做乘法,4做除法(保留余數)\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)
{
//出發
division();
}
else if (operatione == 0)
{
exit(0);
}
else
{
throw 1;
}
}
catch (int i)
{
cout << "輸入錯誤" << endl;
}
operation();
}
int main()
{
printf("歡迎使用本計算器");
operation();
return 0;
}
代碼比較簡單,希望大家能夠喜歡
總結
以上是生活随笔為你收集整理的c++语言编辑简单的计算器,c++编写简单的计算器程序的全部內容,希望文章能夠幫你解決所遇到的問題。
- 上一篇: linux shell 计算器 除0,用
- 下一篇: c语言指数pow,C语言中的指数函数po