蓝桥杯算法提高VIP-模拟计算器 (C++代码) 摘要:利用多分支或者单分支 对操作数进行操作 ```cpp #include using namespace std; int main() { int a_int, b_int…… 题解列表 2019年11月30日 0 点赞 0 评论 290 浏览 评分:0.0
蓝桥杯算法提高VIP-模拟计算器 (C++代码) 摘要:```cpp #include #include #include using namespace std; int main() { int a,b; char c; sca…… 题解列表 2019年11月27日 0 点赞 0 评论 430 浏览 评分:0.0
蓝桥杯算法提高VIP-模拟计算器-题解(Python代码)Python没有switch-case怎么办? 摘要:### 继续学习Python 按照题目要求,我们需要使用switch-case语句进行判断,可是Python没有switch怎么办呢?按照官方文档,Python官方推荐if-elif-elif的方式…… 题解列表 2019年11月18日 0 点赞 0 评论 1397 浏览 评分:9.7
蓝桥杯算法提高VIP-模拟计算器 (C语言代码) 摘要:解题思路:注意事项:参考代码:#include<stdio.h> int main() { int a,b; scanf("%d%d",&a,&b); if(a==0&&b==2||a…… 题解列表 2019年05月15日 0 点赞 0 评论 305 浏览 评分:2.0
蓝桥杯算法提高VIP-模拟计算器 (C语言代码) 摘要:#include<stdio.h> int main() { int a,b; char ch; //a=b=2; scanf("%d %d %c",&a,&b,&ch); …… 题解列表 2019年05月12日 0 点赞 0 评论 749 浏览 评分:0.0
蓝桥杯算法提高VIP-模拟计算器 (C语言代码)简单!! 摘要:解题思路:无注意事项:无参考代码:#include<stdio.h>int main(){ int a,b; char c; scanf("%d %d %c",&a,&b,&c); switch(c)…… 题解列表 2019年05月09日 0 点赞 0 评论 399 浏览 评分:0.0
蓝桥杯算法提高VIP-模拟计算器 (C语言代码) 摘要://注意:输入两个整数和一个字符用scanf的时候,一定要按格式#include<stdio.h>int main(){ int a,b; char n; scanf("%d %d %c",&a,&b…… 题解列表 2019年02月14日 0 点赞 0 评论 341 浏览 评分:0.0
蓝桥杯算法提高VIP-模拟计算器 (C++代码) 摘要:解题思路:注意事项:参考代码:#include<iostream> #include<cstdio> using namespace std; int main() { int a,b; …… 题解列表 2018年04月15日 0 点赞 0 评论 639 浏览 评分:9.9
优质题解 Manchester- 蓝桥杯算法提高VIP-模拟计算器 摘要:解题思路:方法①: switch(choise_F(A)) { case 1:{printf("%d\n\n",x+y);b 题解列表 2018年04月04日 9 点赞 2 评论 4155 浏览 评分:8.2
优质题解 蓝桥杯算法提高VIP-模拟计算器 (C++代码) 摘要:解题思路:虽然有很多大神写了本题的题解,但是我发现没人提到这道题的严谨性问题,所以我就“多此一举”一下。主要思路就是根据题意模拟。注意事项:首先我用if去做的这道题,因为用题目要求的switch去写,…… 题解列表 2018年03月29日 2 点赞 5 评论 2243 浏览 评分:6.3