编写题解 1196: 去掉空格(编程入门) 摘要:解题思路:注意事项:参考代码:#include<stdio.h> #include<string.h> int main() { char arr[101]={0}; cha…… 题解列表 2024年04月26日 0 点赞 0 评论 241 浏览 评分: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 评论 287 浏览 评分:0.0
无聊的星期六 摘要:解题思路:注意事项:参考代码:#include<stdio.h> #include<string.h> int main() { int n,m; char sn[1111]="";…… 题解列表 2024年04月27日 0 点赞 0 评论 137 浏览 评分:0.0
无聊的星期六 摘要:解题思路:注意事项:参考代码:#include<stdio.h> #define YU(x,y) x%y int main() { int x,y; scanf("%d %d…… 题解列表 2024年04月27日 0 点赞 0 评论 313 浏览 评分: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 评论 353 浏览 评分:0.0
1050: [编程入门]结构体之成绩记录 摘要:解题思路:注意事项:参考代码:n = int(input()) arr = [] [arr.append(list(map(str, input().split()))) for _ in ran…… 题解列表 2024年04月27日 0 点赞 0 评论 158 浏览 评分:0.0
无聊的星期六 摘要:-------------------------------------------------------------------------print(input()[::-1])-------…… 题解列表 2024年04月27日 0 点赞 0 评论 160 浏览 评分:0.0
无聊的星期六 摘要:解题思路:注意事项:参考代码:#include<stdio.h> int fun(int n){ return (n<=1)?n:(fun(n-1)+fun(n-2)); } int m…… 题解列表 2024年04月27日 0 点赞 0 评论 97 浏览 评分:0.0
无聊的星期六 摘要:解题思路:注意事项:参考代码:print(sum(i for i in range(1,int(input())+1) if i%2!=0))…… 题解列表 2024年04月27日 0 点赞 0 评论 178 浏览 评分:0.0
无聊的星期六 摘要:解题思路:注意事项:参考代码:mun1,mun2=list(map(int,input().split())) max_num=max(mun1,mun2) min_num=min(mun1,…… 题解列表 2024年04月27日 0 点赞 0 评论 166 浏览 评分:0.0