蓝桥杯算法提高VIP-模拟计算器-题解(C语言代码)
摘要:#include
int main()
{
int a,b;
char op;
scanf("%d %d %c",&a,&b,&op);
switch(op)
{
cas……
蓝桥杯算法提高VIP-模拟计算器 (C语言代码)
摘要:解题思路:注意事项:参考代码:/*使用Switch语句编写一个模拟简单计算器的程序。依次输入两个整数和一个字符,并用空格隔开。如果该字符是一个“+”,则打印和;如果该字符是一个“-”,则打印差;如果该……
1480: 蓝桥杯算法提高VIP-模拟计算器
摘要:```c
#include
int main()
{
int m, n;
char c;
scanf("%d %d %c", &m, &n, &c);
s……
模拟计算器(if else)
摘要:解题思路:注意事项:参考代码:l = input().split()a = int(l[0])b = int(l[1])if l[2] == '+': print(a+b)eli……
蓝桥杯算法提高VIP-模拟计算器 题解(c++,switch)
摘要:解题思路:直接用switch按题目硬打就欧了!注意事项:无。参考代码:#include<bits/stdc++.h>using namespace std;int x,y;char z;int mai……
蓝桥杯算法提高VIP-模拟计算器-题解(C语言代码)
摘要:```c
#include
#include
#include
#include
void main()
{
int a,b;
char c;
scanf("%d%d %c",……
模拟计算器 (C++代码)
摘要:解题思路:注意事项:参考代码:#include<iostream>
using namespace std;
int main()
{
int a,b;
char c;
……
蓝桥杯算法提高VIP-模拟计算器-题解(C语言代码)
摘要:解题思路:注意事项:参考代码:#include <stdio.h>int main (){ int a,b; char c;scanf("%d %d %c",&a,&b,&c); switch(c) ……
蓝桥杯算法提高VIP-模拟计算器-题解(C++代码)
摘要:看了其他人写的题解 发现有自己没考虑到的一些细节:
1、除法运算中,除数不能为0。
2、scanf("%d %d %c",&a,&b,&c)中必须要有空格。因为scanf()在输入字符时遇到空格即……