c++解法(可读性强) 摘要:```cpp #include #include #include #include using namespace std; int main() { int n1,n2…… 题解列表 2021年04月15日 0 点赞 0 评论 283 浏览 评分:9.9
蓝桥杯算法提高VIP-模拟计算器----简单易懂,算是基础编写 摘要:解题思路:参考日常使用的计算器,只要可以运行就可以。注意事项:我用到了自定义函数,如果没学过可以私信我。参考代码:#include<iostream> //计算器using namespace std…… 题解列表 2021年08月27日 0 点赞 0 评论 180 浏览 评分:9.9
蓝桥杯算法提高VIP-模拟计算器 摘要:解题思路:输入两个整型变量,一个字符。用Switch对字符进行判断,输出结果。注意事项:用scanf时要加入空格参考代码:#include<stdio.h>int main(){ int a,b…… 题解列表 2021年09月14日 0 点赞 0 评论 125 浏览 评分:0.0
蓝桥杯算法提高VIP-模拟计算器(c++代码题解) 摘要:解题思路:定义二个int类型,一个char类型变量用if函数即可解决此题注意事项:无参考代码:#include<bits/stdc++.h> using namespace std; int ma…… 题解列表 2021年11月28日 0 点赞 0 评论 450 浏览 评分:9.9
模拟计算器 摘要:解题思路:使用switch而不是if注意事项:参考代码:#include<bits/stdc++.h>using namespace std;int main(){ int a,b; …… 题解列表 2021年11月28日 0 点赞 0 评论 213 浏览 评分:2.0
1480: 蓝桥杯算法提高VIP-模拟计算器 摘要:无脑 switch 就完事儿了。#include<bits/stdc++.h> using namespace std; int main(){ int a,b; cha…… 题解列表 2021年12月15日 0 点赞 0 评论 109 浏览 评分:0.0
1480: 蓝桥杯算法提高VIP-模拟计算器__优质题解 摘要:解题思路:虽然有很多大神写了本题的题解,但是我发现没人提到这道题的严谨性问题,所以我就“多此一举”一下。主要思路就是根据题意模拟。注意事项:首先我用if去做的这道题,因为用题目要求的switch去写,…… 题解列表 2021年12月31日 0 点赞 0 评论 191 浏览 评分:9.9
1480: 蓝桥杯算法提高VIP-模拟计算器 摘要:解题思路: 1.使用if-else方法 2.使用switch方法注意事项: 使用while多次测试参考代码://if-else方法 #include<iostream> usin…… 题解列表 2022年01月14日 0 点赞 0 评论 147 浏览 评分:0.0
1480: 蓝桥杯算法提高VIP-模拟计算器(避坑,字符输入 摘要:既然题目里给了3 4 +(注意空格的位置),我们的scanf语句最好写成下面代码所示,否则空格将会影响ch的输入 ```c #include int main() { c…… 题解列表 2022年01月19日 0 点赞 0 评论 117 浏览 评分:0.0
1480: 蓝桥杯算法提高VIP-模拟计算器(python解) 摘要:解题思路:以字符串形式输入abc判断c进行不同运算然后进行输出注意事项:python中的除法需要用//参考代码:while True: a,b,c=map(str,input().split()…… 题解列表 2022年01月22日 0 点赞 0 评论 506 浏览 评分:7.3