题解 1480: 模拟计算器

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

筛选

1480: 蓝桥杯算法提高VIP-模拟计算器__优质题解

摘要:解题思路:虽然有很多大神写了本题的题解,但是我发现没人提到这道题的严谨性问题,所以我就“多此一举”一下。主要思路就是根据题意模拟。注意事项:首先我用if去做的这道题,因为用题目要求的switch去写,……

题解 1480: 模拟计算器

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

c++萌新的题解

摘要:解题思路:注意事项:参考代码:#include<bits/stdc++.h>using namespace std;int main(){    //intÊÇÕûÊý 1 2 9 69 100   ……

1480: 模拟计算器

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

题解 1480: 模拟计算器

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

1480: 模拟计算器 语言: C++

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

1480: 模拟计算器

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