[编程入门]自定义函数之字符串连接 摘要:解题思路:#include<stdio.h>#include<string.h>int main(){ char a[10]={'0'},b[10]={'0'};…… 题解列表 2023年03月01日 0 点赞 0 评论 267 浏览 评分:0.0
[编程入门]自定义函数之字符串反转 摘要:解题思路:#include<stdio.h>#include<string.h>int main(){ char a[15]={'0'}; scanf("%s", &a);…… 题解列表 2023年03月01日 0 点赞 0 评论 243 浏览 评分:0.0
不要想太多,这样简单 摘要:解题思路:基础C语言即可注意事项:只用for和if语句参考代码:#include<stdio.h>int main(){ int a[10],i,b; for(i=0;i<9;i++) s…… 题解列表 2023年03月01日 0 点赞 0 评论 268 浏览 评分:8.0
c语言 ,这样做才简单!! 摘要:解题思路:基础C语言注意事项:无参考代码:#include<stdio.h>int main(){ int i,a[10]; for(i=0;i<10;i++) scanf("%d",&a…… 题解列表 2023年03月01日 0 点赞 0 评论 357 浏览 评分:0.0
还是不理解为啥错了 摘要:解题思路:注意事项:参考代码:#include<bits/stdc++.h>using namespace std;int main(){ int ans = 0,maxx,flag,l,k,q,p;…… 题解列表 2023年03月01日 0 点赞 0 评论 308 浏览 评分:0.0
编写题解 1017: [编程入门]完数的判断 摘要:````c #include #define max 1001 int main() { int n,i,j,a[max],l; scanf("%d",&n); f…… 题解列表 2023年03月02日 0 点赞 0 评论 295 浏览 评分:0.0
递归进制转换(我是废物) 摘要:解题思路:注意事项:参考代码:#include<stdio.h>void print(int n){ if(n>7) print(n/8); printf("%d",n%8);}int m…… 题解列表 2023年03月02日 0 点赞 0 评论 265 浏览 评分:0.0
采购是我,我是才够 摘要:解题思路:注意事项:参考代码:#include<stdio.h>#include<math.h>int main(){ double h; scanf("%lf",&h); doub…… 题解列表 2023年03月02日 0 点赞 0 评论 580 浏览 评分:9.9
不要想太多,这样简单 摘要:解题思路:基本C语言注意事项:无参考代码:#include<stdio.h>int main(){ int N; scanf("%d",&N); int a[N][N],i,j,J…… 题解列表 2023年03月02日 0 点赞 0 评论 261 浏览 评分:0.0
2109基础解法(Python) 摘要:解题思路:基础的排序和贪心注意事项:测试用例过不了是什么鬼啊参考代码:k, m, n = map(int, input().split())lst = list(reversed(sorted(map…… 题解列表 2023年03月02日 0 点赞 0 评论 348 浏览 评分:0.0