1480: 模拟计算器 摘要:解题思路:注意事项:参考代码:#include<bits/stdc++.h>using namespace std;int main(){ int a,b; char c; cin>…… 题解列表 2023年12月31日 0 点赞 0 评论 46 浏览 评分:9.9
ASCll码巧解约束项 摘要:解题思路:根据题目所列条件,我们要根据switch语句来模拟计算器,但是switch语句又不能直接根据字符来选出情况(即case后面不能直接跟'+'),所以我们可以找到一个中间量:即将…… 题解列表 2023年05月02日 0 点赞 0 评论 92 浏览 评分:9.9
蓝桥杯算法提高VIP-模拟计算器(c++代码题解) 摘要:解题思路:定义二个int类型,一个char类型变量用if函数即可解决此题注意事项:无参考代码:#include<bits/stdc++.h> using namespace std; int ma…… 题解列表 2021年11月28日 0 点赞 0 评论 450 浏览 评分:9.9
题解 1480: 模拟计算器 摘要:解题思路:注意事项:参考代码:#include <bits/stdc++.h>using namespace std;int main(){ int a,b; char c; cin…… 题解列表 2024年01月06日 0 点赞 0 评论 121 浏览 评分:9.9
1480: 模拟计算器 摘要:```cpp #include using namespace std; int main() { int a,b; char c; cin>>a>>b>>c; …… 题解列表 2023年01月30日 0 点赞 0 评论 167 浏览 评分:9.9
蓝桥杯算法提高VIP-模拟计算器-题解(Java代码) 摘要:解题思路:switch判断出输入符号,输出算数结果即可注意事项:参考代码:import java.util.Scanner; public class Main { /** * @…… 题解列表 2021年01月11日 0 点赞 0 评论 546 浏览 评分:9.9
LikeWater - 1480: 模拟计算器 摘要:####这个题简单题,注意题目要求的是整数,如果用浮点数就会报错,所以老老实实用整数就行了,还有switch语句,注意要加break,不加break就会持续执行,这点运用我在 《题目 1049: [编…… 题解列表 2023年02月27日 0 点赞 1 评论 115 浏览 评分:9.9
c++萌新的题解 摘要:解题思路:注意事项:参考代码:#include<bits/stdc++.h>using namespace std;int main(){ //intÊÇÕûÊý 1 2 9 69 100 …… 题解列表 2023年11月09日 0 点赞 0 评论 70 浏览 评分:9.9
c++解法(可读性强) 摘要:```cpp #include #include #include #include using namespace std; int main() { int n1,n2…… 题解列表 2021年04月15日 0 点赞 0 评论 283 浏览 评分:9.9
1480 模拟计算器 初学者一定能懂 摘要:解题思路:用强制转换把ch转换成int类型注意事项:需要理解强制转换的定义,括号里面的是需要转换到的数据类型。e.g #include <stdio.h> int main() …… 题解列表 2024年11月17日 1 点赞 0 评论 222 浏览 评分:9.9