1049时间设计(结构体实现) 摘要:解题思路:注意事项:参考代码:#include<stdio.h>typedef struct shijian{ int nian; int yue; int ru;}shijian;int main(…… 题解列表 2024年05月23日 0 点赞 0 评论 120 浏览 评分:0.0
1050成绩记录 摘要:解题思路:注意事项:参考代码:#include<stdio.h>typedef struct student{ char xuehao[20]; char xinming[20]; int a; in…… 题解列表 2024年05月23日 0 点赞 0 评论 124 浏览 评分:0.0
1051成绩统计2 摘要:解题思路:注意事项:参考代码:#include<stdio.h>typedef struct student{ char xuehao[20]; char xinming[20]; int a; in…… 题解列表 2024年05月23日 0 点赞 0 评论 157 浏览 评分:0.0
编写题解 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 评论 232 浏览 评分: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 评论 328 浏览 评分:0.0
1052 链表合并(输出是用二维数组的,链表排序不会) 摘要:解题思路:注意事项:参考代码:#include<stdio.h>#include<stdlib.h>#include<string.h>typedef struct student { int a; …… 题解列表 2024年05月24日 0 点赞 0 评论 158 浏览 评分:0.0
1053平均值计算(注意字符类型的变换) 摘要:解题思路:注意事项:参考代码:#include<stdio.h>int main(){ int a[10]; int sum=0; float lev=0; for(int i=0;i<10;i++)…… 题解列表 2024年05月24日 2 点赞 0 评论 956 浏览 评分:0.0
无聊的星期六 摘要:无聊上个动态。 #include<stdio.h> #include<stdlib.h> int main(){ int size,sum=0; scanf("%d",&size)…… 题解列表 2024年05月25日 0 点赞 0 评论 374 浏览 评分:0.0
无聊的星期六 摘要:#include<stdio.h> #include<stdlib.h> #include<string.h> typedef struct{ char name[20]; int c…… 题解列表 2024年05月25日 0 点赞 0 评论 131 浏览 评分: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 评论 534 浏览 评分:0.0