1052 链表合并(输出是用二维数组的,链表排序不会) 摘要:解题思路:注意事项:参考代码:#include<stdio.h>#include<stdlib.h>#include<string.h>typedef struct student { int a; …… 题解列表 2024年05月24日 0 点赞 0 评论 157 浏览 评分: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 评论 930 浏览 评分:0.0
无聊的星期六 摘要:无聊上个动态。 #include<stdio.h> #include<stdlib.h> int main(){ int size,sum=0; scanf("%d",&size)…… 题解列表 2024年05月25日 0 点赞 0 评论 369 浏览 评分:0.0
无聊的星期六 摘要:#include<stdio.h> #include<stdlib.h> #include<string.h> typedef struct{ char name[20]; int c…… 题解列表 2024年05月25日 0 点赞 0 评论 130 浏览 评分: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 评论 527 浏览 评分:0.0
1055八进制转换(%o输出) 摘要:解题思路:注意事项:参考代码:#include<stdio.h>int main(){ int n; scanf("%d",&n); printf("%o",n); return 0;}…… 题解列表 2024年05月25日 1 点赞 0 评论 524 浏览 评分:0.0
1056温度转换(注意类型) 摘要:解题思路:注意事项:参考代码:#include<stdio.h>int main(){ float n; scanf("%f",&n); float m; m=(5.0/9)*(n-3…… 题解列表 2024年05月25日 0 点赞 2 评论 708 浏览 评分:0.0
1057 分段函数 摘要:解题思路:注意事项:参考代码:#include<stdio.h>int main(){ float n; scanf("%f",&n); if(n<1.00) printf("%.2f…… 题解列表 2024年05月25日 0 点赞 0 评论 249 浏览 评分: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 评论 498 浏览 评分:0.0
无聊的星期六 摘要:size=int(input()) num=list(map(int,(input().split()))) q=w=e=r=0 for i in num: if 0<=i<=18: …… 题解列表 2024年05月25日 0 点赞 0 评论 261 浏览 评分:0.0