用 c++ 写的一个简单的计算器程序 - cplusplus 代码片段

发布于 2022-11-01 23:44:15 字数 1748 浏览 19 评论 0

系统:win7
电脑:dell
运行环境:vs2015
语言:c++

//四则运算
#include "stdafx.h"
#include<iostream>
#include<stdio.h>
using namespace std;
void add()
{
	printf("输入要计算的加数(例如 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("输入要计算的减数(例如 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("输入要计算的乘数(例如 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("输入要计算的除数(例如 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()//运算函数
{
	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;
}

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。
列表为空,暂无数据
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文