解题思路:
注意事项:
参考代码:
#include<bits/stdc++.h>
using namespace std;
int main()
{
int a,b;
char c;
cin>>a>>b>>c;
if(c=='+')
return cout<<a+b<<endl,0;
else if(c=='-')
return cout<<a-b<<endl,0;
else if(c=='*')
return cout<<a*b<<endl,0;
else if(c=='/')
return cout<<a/b<<endl,0;
else if(c=='%')
return cout<<a%b<<endl,0;
}
0.0分
1 人评分
点我有惊喜!你懂得!浏览:2754 |
点我有惊喜!你懂得!浏览:1462 |
C二级辅导-同因查找 (C语言代码)浏览:592 |
母牛的故事 (C语言代码)浏览:712 |
C语言程序设计教程(第三版)课后习题11.1 (C语言代码)浏览:695 |
C语言程序设计教程(第三版)课后习题5.7 (C语言代码)浏览:1091 |
震宇大神的杀毒软件 (C++代码)浏览:1173 |
【蟠桃记】 (C语言代码)浏览:711 |
最长单词 (C语言代码)浏览:1474 |
剪刀石头布 (C语言代码)不知道怎么直接在scanf中用枚举变量浏览:1436 |