1007c语言代码 摘要:解题思路:注意事项:参考代码:#include <stdio.h>int main(){ int x,y; scanf("%d",&x); if(x<1){ y=x; } else if(x>=10…… 题解列表 2023年11月05日 0 点赞 0 评论 432 浏览 评分:0.0
1006c语言代码 摘要:解题思路:注意事项:参考代码:#include <stdio.h>int main(){ int a,b,c,max; scanf("%d %d %d",&a,&b,&c); if(a>=b&&a>=…… 题解列表 2023年11月05日 0 点赞 0 评论 469 浏览 评分:0.0
1005c语言代码 摘要:解题思路:注意事项:参考代码:#include <stdio.h>int main(){ double F,c; scanf("%lf",&F); c=5*(F-32)/9; printf("c=%.…… 题解列表 2023年11月05日 0 点赞 0 评论 497 浏览 评分:0.0
1003c语言代码 摘要:解题思路:注意事项:参考代码:#include <stdio.h>int main(){ char c1,c2,c3,c4,c5; scanf("%c%c%c%c%c",&c1,&c2,&c3,&c4…… 题解列表 2023年11月05日 0 点赞 0 评论 480 浏览 评分:0.0
1002c语言代码 摘要:解题思路:注意事项:参考代码:#include <stdio.h>int main(){ int a,b,c,max; scanf("%d %d %d",&a,&b,&c); if(a>b){ if…… 题解列表 2023年11月05日 0 点赞 0 评论 491 浏览 评分:9.9
1001c语言代码 摘要:解题思路:注意事项:参考代码:#include <stdio.h>int main(){ printf("**************************\n"); printf("Hello W…… 题解列表 2023年11月05日 0 点赞 0 评论 465 浏览 评分:9.9
甲流疫情死亡率 摘要:解题思路:注意事项:参考代码:#include<stdio.h>#include<stdbool.h>int main(){ int a,b; double c; scanf("%d%d", &a, …… 题解列表 2023年11月05日 0 点赞 0 评论 827 浏览 评分:0.0
C语言思路简单,易懂!!! 理解万岁 (纯C语言) 栈的思想(@_@)!!!! 摘要:解题思路:注意事项: //下列1代表数字栈操作 2代表符号栈操作参考代码:#include <stdio.h>#include <string.h>#include <stdlib.h>…… 题解列表 2023年11月05日 0 点赞 0 评论 916 浏览 评分:9.9
整数大小的比较 摘要:解题思路:注意事项:输出的是字符注意引号的使用参考代码:x,y=map(int,input().split())if x > y: print('>') elif …… 题解列表 2023年11月05日 0 点赞 0 评论 680 浏览 评分:9.9
2809: 菲波那契数列 摘要:``` #include using namespace std; int main(){ int k,a=1,b=1,c=a+b; cin>>k; if (k …… 题解列表 2023年11月05日 0 点赞 0 评论 664 浏览 评分:9.9