蓝桥杯算法提高VIP-模拟计算器 (Java代码) 摘要:解题思路:注意事项:参考代码:public static void main(String[] args) { Scanner sc = new Scanner(System.in); int a…… 题解列表 2018年01月22日 1 点赞 0 评论 856 浏览 评分:0.0
蓝桥杯算法提高VIP-模拟计算器 (C++代码) 摘要:解题思路:注意事项:参考代码:简单,直接进新判断就行:#include<stdio.h> int main() { int a,b; char temp,c; sca…… 题解列表 2018年01月27日 1 点赞 0 评论 651 浏览 评分:0.0
蓝桥杯算法提高VIP-模拟计算器 (Java代码) 摘要:解题思路:注意事项:语法:public char[] toCharArray()参考代码: import java.io.InputStream; import java.util.Scan…… 题解列表 2018年02月25日 0 点赞 0 评论 774 浏览 评分:0.0
蓝桥杯算法提高VIP-模拟计算器 (C语言代码) 摘要:解题思路:注意事项:参考代码:/*使用Switch语句编写一个模拟简单计算器的程序。依次输入两个整数和一个字符,并用空格隔开。如果该字符是一个“+”,则打印和;如果该字符是一个“-”,则打印差;如果该…… 题解列表 2018年03月06日 0 点赞 0 评论 1849 浏览 评分: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 评论 531 浏览 评分: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 评论 538 浏览 评分:0.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 评论 996 浏览 评分:0.0
蓝桥杯算法提高VIP-模拟计算器 (C++代码) 摘要:```cpp #include #include #include using namespace std; int main() { int a,b; char c; sca…… 题解列表 2019年11月27日 0 点赞 0 评论 662 浏览 评分:0.0
蓝桥杯算法提高VIP-模拟计算器 (C++代码) 摘要:利用多分支或者单分支 对操作数进行操作 ```cpp #include using namespace std; int main() { int a_int, b_int…… 题解列表 2019年11月30日 0 点赞 0 评论 421 浏览 评分:0.0
蓝桥杯算法提高VIP-模拟计算器-题解(Java代码) 摘要:Scanner scanner=new Scanner(System.in); int a=scanner.nextInt(); int b=scanner.nextInt(); c…… 题解列表 2019年12月19日 0 点赞 0 评论 627 浏览 评分:0.0