题解 1480: 模拟计算器

来看看其他人写的题解吧!要先自己动手做才会有提高哦! 
返回题目 | 我来写题解

筛选

题解 1480: 模拟计算器

摘要:解题思路:这道题的严谨性问题,主要思路就是根据题意模拟。注意事项:首先我用if去做的这道题,因为用题目要求的switch去写,不能方便的避免除数为0的问题。同时,在求差、求商、取余运算的时候,本题也没……

1480: 模拟计算器

摘要:解题思路:注意事项:case后是‘符号’参考代码:#include<bits/stdc++.h>usingnamespacestd;intmain(){&n……

题解 1480: 模拟计算器

摘要:解题思路:注意事项:参考代码:#include<bits/stdc++.h>usingnamespacestd;intmain(){&nbsp;&nbsp;inta,b;&……

题解 1480: 模拟计算器

摘要:解题思路:注意事项:参考代码:#include<bits/stdc++.h>usingnamespacestd;intmain(){&nbsp;&nbsp;inta,b;&……

java--study||O.o

摘要:参考代码:import&nbsp;java.util.Scanner;&nbsp;public&nbsp;class&nbsp;Main{&nbsp;&……

1480: 模拟计算器

摘要:解题思路:注意事项:参考代码:#include<bits/stdc++.h>using&nbsp;namespace&nbsp;std;int&nbsp;main(……

模拟计算器--java语言

摘要:解题思路:注意事项:输入字符的写法非nextChar()&nbsp;正确写法为:next().charAt(0)参考代码:import&nbsp;java.util.Scanner;p……