题解 1480: 模拟计算器

来看看其他人写的题解吧!要先自己动手做才会有提高哦! 
返回题目 | 我来写题解

筛选

模拟计算器

摘要:解题思路:注意事项:参考代码:#include <bits/stdc++.h>using namespace std;int main(){     int a,b;     char c;     ……

蓝桥杯算法提高VIP-模拟计算器

摘要:解题思路:输入两个整型变量,一个字符。用Switch对字符进行判断,输出结果。注意事项:用scanf时要加入空格参考代码:#include<stdio.h>int main(){    int a,b……

模拟计算器(C语言)

摘要:解题思路:注意事项:参考代码:#include<stdio.h>int main(){    int n, m;    char u;    scanf("%d %d %c", &n, &m, &u)……

模拟计算器

摘要:解题思路:注意事项:参考代码:#include<stdio.h>#include<math.h>int main(){ int x,y; char a; scanf("%d %d %c",&x,&y,……