编写题解 2814: 正常血压 摘要:解题思路:注意事项:参考代码:#include<bits/stdc++.h>using namespace std;int main(){int n,a,b,s=0,max=0; cin>>n; fo…… 题解列表 2024年05月23日 0 点赞 0 评论 284 浏览 评分:0.0
统计满足条件的4位数个数 摘要:解题思路:注意事项:参考代码:#include<bits/stdc++.h>using namespace std;int main(){int a,t=0;cin>>a;int q,b,x,g,s;…… 题解列表 2024年05月24日 0 点赞 0 评论 378 浏览 评分:0.0
1052 链表合并(输出是用二维数组的,链表排序不会) 摘要:解题思路:注意事项:参考代码:#include<stdio.h>#include<stdlib.h>#include<string.h>typedef struct student { int a; …… 题解列表 2024年05月24日 0 点赞 0 评论 202 浏览 评分:0.0
无聊的星期六 摘要:无聊上个动态。 #include<stdio.h> #include<stdlib.h> int main(){ int size,sum=0; scanf("%d",&size)…… 题解列表 2024年05月25日 0 点赞 0 评论 451 浏览 评分:0.0
无聊的星期六 摘要:#include<stdio.h> #include<stdlib.h> #include<string.h> typedef struct{ char name[20]; int c…… 题解列表 2024年05月25日 0 点赞 0 评论 170 浏览 评分:0.0
1054计算素数和(调用函数判断) 摘要:解题思路:注意事项:参考代码:#include<stdio.h>int sushu(int n)// 返回0为素数 { if(n==1) return 1; else if(n==2) return …… 题解列表 2024年05月25日 0 点赞 0 评论 584 浏览 评分:0.0
1055八进制转换(%o输出) 摘要:解题思路:注意事项:参考代码:#include<stdio.h>int main(){ int n; scanf("%d",&n); printf("%o",n); return 0;}…… 题解列表 2024年05月25日 1 点赞 0 评论 643 浏览 评分:0.0
1056温度转换(注意类型) 摘要:解题思路:注意事项:参考代码:#include<stdio.h>int main(){ float n; scanf("%f",&n); float m; m=(5.0/9)*(n-3…… 题解列表 2024年05月25日 1 点赞 2 评论 856 浏览 评分:0.0
1057 分段函数 摘要:解题思路:注意事项:参考代码:#include<stdio.h>int main(){ float n; scanf("%f",&n); if(n<1.00) printf("%.2f…… 题解列表 2024年05月25日 0 点赞 0 评论 317 浏览 评分:0.0
1058求偶数和 摘要:解题思路:注意事项:参考代码:#include<stdio.h>int main(){ int n; scanf("%d",&n); int a[n]; int sum=0; fo…… 题解列表 2024年05月25日 0 点赞 0 评论 568 浏览 评分:0.0