蓝桥杯算法提高- c++_ch02_02 (C语言代码) 摘要:解题思路:注意事项:参考代码:#include<stdio.h> #include<stdlib.h> int main() { int a,b; char c; …… 题解列表 2019年05月21日 0 点赞 0 评论 251 浏览 评分:0.0
蓝桥杯算法提高- c++_ch02_02-题解(C语言代码) 摘要:```c #pragma warning(disable:4996) #include #include #include #include int main() { in…… 题解列表 2020年02月12日 0 点赞 0 评论 311 浏览 评分:0.0
蓝桥杯算法提高- c++_ch02_02 (C语言代码) 摘要:解题思路:注意事项:参考代码:#include<stdio.h>void main(){ int a,b; char c; scanf("%d %d %c",&a,&b,&c); …… 题解列表 2018年11月06日 0 点赞 0 评论 368 浏览 评分:0.0
C语言 求解: c++_ch02_02 (C语言代码) 摘要:解题思路:scanf函数用来输入两个操作数和操作符,操作数使用int类型,操作符使用char类型。使用switch判断比较简单。注意事项:参考代码:#include <stdio.h> int ma…… 题解列表 2019年01月24日 2 点赞 0 评论 659 浏览 评分:0.0
蓝桥杯算法提高- c++_ch02_02 (C语言代码) 摘要:解题思路:注意事项:参考代码:#include<stdio.h> #include<stdlib.h> int main() { int a,b; char c; …… 题解列表 2019年05月21日 0 点赞 0 评论 292 浏览 评分:0.0
蓝桥杯算法提高- c++_ch02_02 摘要:解题思路:简单用switch结构注意事项:要注意scanf后面空格,否则计算不出结果参考代码#include<stdio.h>int main(){ int a,b; char c; scanf…… 题解列表 2022年07月15日 0 点赞 0 评论 95 浏览 评分:0.0
蓝桥杯算法提高- c++_ch02_02-题解(C语言代码) 摘要: #include "stdio.h" int main() { int a,b; char c; scanf("%d %d %c",&a,&b,&c); switc…… 题解列表 2020年02月12日 0 点赞 0 评论 308 浏览 评分:0.0
蓝桥杯算法提高- c++_ch02_02-题解(C语言代码) 摘要:解题思路:注意事项:参考代码:#include<stdio.h>int main(){ int a,b; char c; scanf("%d %d %c",&a,&b,&c); switch(c) …… 题解列表 2020年08月16日 0 点赞 0 评论 185 浏览 评分:0.0
蓝桥杯算法提高- c++_ch02_02 (C语言代码) 摘要:解题思路:注意事项:在switch里也可用对应的ASCII码值代替'+'这些参考代码:#include <stdio.h>int main(){ int a,b; ch…… 题解列表 2018年12月13日 1 点赞 0 评论 374 浏览 评分:0.0
宝,我今天用switch了 摘要:解题思路:注意事项:1.符号的定义就是%c而不是%d!!!2.输入%d和%c之间要有空格哦!!!3.%c对应的是单个字符 %s对应的是字符串参考代码:#include<stdio.h>int main…… 题解列表 2021年07月19日 0 点赞 3 评论 466 浏览 评分:9.9