除法加一个int()即可 摘要:解题思路:注意事项:除法的要求好像是取整,所以加一个int(a/b)就可以了参考代码:A,B,c=input().split()a=int(A)b=int(B)if c=="+": f=a+b …… 题解列表 2024年03月31日 0 点赞 0 评论 151 浏览 评分:0.0
1480-普普通通的解题方法 摘要:解题思路:注意事项:用scanf写输入格式时,如果只想写一行,注意两个%d之后加一个空格再接%c。参考代码:#include<stdio.h>int ch(char c){ if (c == '…… 题解列表 2024年11月23日 0 点赞 0 评论 177 浏览 评分:0.0
蓝桥杯算法提高VIP-模拟计算器 (Java代码) 摘要:解题思路:注意事项:参考代码:public static void main(String[] args) { Scanner sc = new Scanner(System.in); int a…… 题解列表 2018年01月22日 1 点赞 0 评论 777 浏览 评分:0.0
模拟计算器(输入的时候有些小细节,需要用getchar收取换行符) 摘要:注意事项: 在使用scanf读取字符之前,如果之前有输入操作,可能会在输入缓冲区中留下换行符,通常情况下,在读取其他类型的输入后,如果遇到需要读取字符的操作,可以在读取字符之前使用getchar来处…… 题解列表 2023年09月05日 0 点赞 0 评论 135 浏览 评分:0.0
蓝桥杯算法提高VIP-模拟计算器-题解(C++代码) 摘要:解题思路:主要就是考察switch语句的使用了。 ```cpp #include using namespace std; int main() { int a,b; char …… 题解列表 2020年02月27日 0 点赞 0 评论 250 浏览 评分:0.0
模拟计算器 摘要:解题思路:注意事项:参考代码:#include<stdio.h>#include<math.h>int main(){ int x,y; char a; scanf("%d %d %c",&x,&y,…… 题解列表 2022年12月20日 0 点赞 0 评论 58 浏览 评分:0.0
模拟计算器 (Java代码) 摘要:解题思路:注意事项:eclipse完美运行,,但是在这显示答案错误(仅供参考)参考代码:import java.util.Scanner;public class Main { pub…… 题解列表 2017年07月15日 0 点赞 2 评论 622 浏览 评分:0.0
蓝桥杯算法提高VIP-模拟计算器【指针函数类型】-题解(C语言代码) 摘要:解题思路: 泰克跌了注意事项:参考代码:#includeint rem(int a,int b); int flus(int a, int b); int sub(int a, int b); …… 题解列表 2020年12月25日 0 点赞 0 评论 385 浏览 评分:0.0
模拟计算器(if else) 摘要:解题思路:注意事项:参考代码:l = input().split()a = int(l[0])b = int(l[1])if l[2] == '+': print(a+b)eli…… 题解列表 2024年07月28日 1 点赞 0 评论 82 浏览 评分:0.0
蓝桥杯算法提高VIP-模拟计算器-题解(Java代码) 摘要:解题思路:注意事项:参考代码:import java.util.Scanner;public class Main { public static void main(String[] args) …… 题解列表 2020年06月28日 0 点赞 0 评论 874 浏览 评分:0.0