题解 2918: 成绩排序 摘要:解题思路:注意事项:参考代码:#include<stdio.h>#include<string.h>int main(){ int a; char b[20][20]; int c[20]…… 题解列表 2024年04月25日 1 点赞 0 评论 210 浏览 评分:0.0
位操作交换数字 摘要:解题思路:a^a=0 0^a=a注意事项:参考代码:#include<stdio.h>#define change(a,b) {a=a^b;b=a^b;a=a^b; }int main(){int …… 题解列表 2024年04月26日 0 点赞 0 评论 221 浏览 评分:0.0
用c语言输出字符菱形 摘要:解题思路:注意事项:参考代码:#include<stdio.h>int main(){ char a; scanf("%c",&a); printf(" %c",a); printf("\n"); …… 题解列表 2024年04月26日 0 点赞 0 评论 458 浏览 评分:0.0
编写题解 1196: 去掉空格(编程入门) 摘要:解题思路:注意事项:参考代码:#include<stdio.h> #include<string.h> int main() { char arr[101]={0}; cha…… 题解列表 2024年04月26日 0 点赞 0 评论 251 浏览 评分:0.0
无聊的星期六 摘要:解题思路:注意事项:参考代码:# include<stdio.h> int fun(int n) { return (n<=3?n:fun(n-1)+fun(n-3)); } int …… 题解列表 2024年04月27日 0 点赞 0 评论 334 浏览 评分:0.0
无聊的星期六 摘要:解题思路:注意事项:参考代码:#include<stdio.h> #include<string.h> int main() { int n,m; char sn[1111]="";…… 题解列表 2024年04月27日 0 点赞 0 评论 149 浏览 评分:0.0
无聊的星期六 摘要:解题思路:注意事项:参考代码:#include<stdio.h> #define YU(x,y) x%y int main() { int x,y; scanf("%d %d…… 题解列表 2024年04月27日 0 点赞 0 评论 328 浏览 评分:0.0
无聊的星期六 摘要:解题思路:注意事项:参考代码:#include<stdio.h> #include<math.h> #define AREA(a,b,c) (a+b+c)/2 #define SQRT(S,a,…… 题解列表 2024年04月27日 0 点赞 0 评论 368 浏览 评分:0.0
1050: [编程入门]结构体之成绩记录 摘要:解题思路:注意事项:参考代码:n = int(input()) arr = [] [arr.append(list(map(str, input().split()))) for _ in ran…… 题解列表 2024年04月27日 0 点赞 0 评论 170 浏览 评分:0.0
无聊的星期六 摘要:-------------------------------------------------------------------------print(input()[::-1])-------…… 题解列表 2024年04月27日 0 点赞 0 评论 174 浏览 评分:0.0