标签:ase problem amp rip pre com color 情况 bsp
一个具有两个数加减乘除功能的计算器。
输入有多组情况
表达式如 a+b,a,b为个位数
输出表达式和结果
5+6 9/8 5*2 2-3
5+6=11 9/8=1 5*2=10 2-3=-1
#include<stdio.h> int main() { int a,b,d; char c; while(scanf("%d%c%d",&a,&c,&b)!=EOF) { switch(c) { case‘+‘:d=a+b;break; case‘-‘:d=a-b;break; case‘*‘:d=a*b;break; case‘/‘:d=a/b;break; default:d=0;break; } printf("%d%c%d=%d\n",a,c,b,d); } return 0; }
标签:ase problem amp rip pre com color 情况 bsp
原文地址:https://www.cnblogs.com/Lazy-Cat/p/9838240.html