CC++经典程序训练3---模拟计算器

xiaoxiao2021-02-28  8

C/C++经典程序训练3---模拟计算器

Time Limit: 1000MS  Memory Limit: 8192KB Submit  Statistic

Problem Description

简单计算器模拟:输入两个整数和一个运算符,输出运算结果。

Input

第一行输入两个整数,用空格分开; 第二行输入一个运算符(+、-、*、/)。 所有运算均为整数运算,保证除数不包含0。

Output

输出对两个数运算后的结果。

Example Input

30 50 *

Example Output

1500 判断条件过多时,可以使用switch语句来进行操作,相当于多个判断进行,不要忘了break语句。 #include<stdio.h> #include<string.h> int main() { int a, b, t; char c; scanf("%d%d\n%c",&a,&b, &c); switch(c) { case '+': t = a + b;break; case '-': t = a - b;break; case '*': t = a * b;break; case '/': t = a / b;break; } printf("%d\n",t); return 0; }
转载请注明原文地址: https://www.6miu.com/read-850270.html

最新回复(0)