1480: 蓝桥杯算法提高VIP-模拟计算器__优质题解 摘要:解题思路:虽然有很多大神写了本题的题解,但是我发现没人提到这道题的严谨性问题,所以我就“多此一举”一下。主要思路就是根据题意模拟。注意事项:首先我用if去做的这道题,因为用题目要求的switch去写,…… 题解列表 2021年12月31日 0 点赞 0 评论 239 浏览 评分:9.9
题解 1480: 模拟计算器 摘要:解题思路:注意事项:参考代码:#include<stdio.h>int main(){ int a,b; char c; int result; scanf("%d%d",&a…… 题解列表 2023年12月30日 0 点赞 0 评论 120 浏览 评分:9.9
c++萌新的题解 摘要:解题思路:注意事项:参考代码:#include<bits/stdc++.h>using namespace std;int main(){ //intÊÇÕûÊý 1 2 9 69 100 …… 题解列表 2023年11月09日 0 点赞 0 评论 125 浏览 评分:9.9
蓝桥杯算法提高VIP-模拟计算器(c++代码题解) 摘要:解题思路:定义二个int类型,一个char类型变量用if函数即可解决此题注意事项:无参考代码:#include<bits/stdc++.h> using namespace std; int ma…… 题解列表 2021年11月28日 0 点赞 0 评论 487 浏览 评分:9.9
蓝桥杯算法提高VIP-模拟计算器----简单易懂,算是基础编写 摘要:解题思路:参考日常使用的计算器,只要可以运行就可以。注意事项:我用到了自定义函数,如果没学过可以私信我。参考代码:#include<iostream> //计算器using namespace std…… 题解列表 2021年08月27日 0 点赞 0 评论 234 浏览 评分:9.9
c++解法(可读性强) 摘要:```cpp #include #include #include #include using namespace std; int main() { int n1,n2…… 题解列表 2021年04月15日 0 点赞 0 评论 357 浏览 评分:9.9
1480: 模拟计算器 摘要:解题思路:注意事项:参考代码:#include<bits/stdc++.h>using namespace std;int main(){ int a,b; char c; cin>…… 题解列表 2023年12月31日 0 点赞 0 评论 93 浏览 评分:9.9
题解 1480: 模拟计算器 摘要:解题思路:注意事项:参考代码:#include <bits/stdc++.h>using namespace std;int main(){ int a,b; char c; cin…… 题解列表 2024年01月06日 0 点赞 0 评论 173 浏览 评分:9.9
1480: 模拟计算器 语言: C++ 摘要:解题思路: switch基础语法注意事项: 额参考代码:#include<bits/stdc++.h>using namespace std;int main(){ int a,b,ans;…… 题解列表 2022年03月18日 0 点赞 0 评论 729 浏览 评分:9.9
1480: 模拟计算器 摘要:解题思路:注意事项:case后是‘符号’参考代码:#include <bits/stdc++.h>using namespace std;int main(){ int a,b; char…… 题解列表 2024年01月06日 0 点赞 0 评论 125 浏览 评分:9.9