蓝桥杯算法提高VIP-模拟计算器-题解(Python代码) 摘要:```python list1 = [i for i in input().split()] list1[2],list1[1] = list1[1],list1[2] str1 = ''.jo…… 题解列表 2020年02月06日 0 点赞 0 评论 953 浏览 评分:0.0
蓝桥杯算法提高VIP-模拟计算器-题解(C语言代码) 摘要:#include int main() { int a,b; char op; scanf("%d %d %c",&a,&b,&op); switch(op) { cas…… 题解列表 2020年02月01日 0 点赞 0 评论 822 浏览 评分:0.0
蓝桥杯算法提高VIP-模拟计算器-题解(Java代码) 摘要:Scanner scanner=new Scanner(System.in); int a=scanner.nextInt(); int b=scanner.nextInt(); c…… 题解列表 2019年12月19日 0 点赞 0 评论 945 浏览 评分:0.0
蓝桥杯算法提高VIP-模拟计算器 (C++代码) 摘要:利用多分支或者单分支 对操作数进行操作 ```cpp #include using namespace std; int main() { int a_int, b_int…… 题解列表 2019年11月30日 0 点赞 0 评论 745 浏览 评分:0.0
蓝桥杯算法提高VIP-模拟计算器 (C++代码) 摘要:```cpp #include #include #include using namespace std; int main() { int a,b; char c; sca…… 题解列表 2019年11月27日 0 点赞 0 评论 1223 浏览 评分:0.0
蓝桥杯算法提高VIP-模拟计算器-题解(Python代码)Python没有switch-case怎么办? 摘要:### 继续学习Python 按照题目要求,我们需要使用switch-case语句进行判断,可是Python没有switch怎么办呢?按照官方文档,Python官方推荐if-elif-elif的方式…… 题解列表 2019年11月18日 0 点赞 0 评论 2989 浏览 评分: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 评论 1019 浏览 评分: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 评论 1714 浏览 评分: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 评论 1051 浏览 评分: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 评论 1296 浏览 评分:0.0