解题思路:简单用switch结构
注意事项:要注意scanf后面空格,否则计算不出结果
参考代码
#include<stdio.h>
int main()
{
int a,b;
char c;
scanf("%d %d %c",&a,&b,&c);
switch(c)
{
case '+':printf("%d\n",a+b);break;
case '-':printf("%d\n",a-b);break;
case '*': printf("%d\n",a*b);break;
case '/':printf("%d\n",a/b);break;
case '%':printf("%d\n",a%b);break;
}
return 0;
}
0.0分
0 人评分
C语言程序设计教程(第三版)课后习题6.4 (C语言代码)浏览:674 |
Pascal三角 (C语言代码)格式错误浏览:551 |
C语言程序设计教程(第三版)课后习题1.5 (C语言代码)浏览:644 |
Wu-求圆的面积 (C++代码)浏览:1994 |
矩形面积交 (C++代码)浏览:1204 |
C二级辅导-公约公倍 (C语言代码)浏览:537 |
2006年春浙江省计算机等级考试二级C 编程题(1) (C语言代码)浏览:726 |
交换Easy (C语言代码)浏览:805 |
C语言程序设计教程(第三版)课后习题7.5 (C语言代码)浏览:712 |
A+B for Input-Output Practice (IV) (C语言代码)浏览:529 |