C/C++经典程序训练3---模拟计算器
Time Limit: 1000MS
Memory Limit: 8192KB
Problem Description
简单计算器模拟:输入两个整数和一个运算符,输出运算结果。
Input
第一行输入两个整数,用空格分开;
第二行输入一个运算符(+、-、*、/)。
所有运算均为整数运算,保证除数不包含0。
Output
输出对两个数运算后的结果。
Example Input
30 50 *
Example Output
1500
#include <stdio.h>
#include <stdlib.h>
int main()
{
int a,b,d;
char c;
scanf("%d%d\n",&a,&b);
scanf("%c",&c);
if(c == '*' )
{
printf("%d\n",a*b);
}else if (c == '+'){
printf("%d\n",a+b);
}else if(c == '-'){
printf("%d\n",a-b);
}else{printf("%d\n",a/b);}
return 0;
}
本文介绍了一个简单的C/C++程序,用于模拟基本的计算器功能。该程序接收两个整数和一个运算符作为输入,并输出相应的计算结果。通过条件判断实现了加、减、乘、除四种运算。
610

被折叠的 条评论
为什么被折叠?



