[编程入门]自定义函数之字符串连接 摘要:解题思路:#include<stdio.h>#include<string.h>int main(){ char a[10]={'0'},b[10]={'0'};…… 题解列表 2023年03月01日 0 点赞 0 评论 436 浏览 评分:0.0
[编程入门]自定义函数之字符串反转 摘要:解题思路:#include<stdio.h>#include<string.h>int main(){ char a[15]={'0'}; scanf("%s", &a);…… 题解列表 2023年03月01日 0 点赞 0 评论 359 浏览 评分:0.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 评论 515 浏览 评分: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 评论 441 浏览 评分: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 评论 419 浏览 评分: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 评论 459 浏览 评分:0.0
不要想太多,这样简单 摘要:解题思路:基本C语言注意事项:无参考代码:#include<stdio.h>int main(){ int N; scanf("%d",&N); int a[N][N],i,j,J…… 题解列表 2023年03月02日 0 点赞 0 评论 408 浏览 评分:0.0
2109基础解法(Python) 解题思路:基础的排序和贪心注意事项:测试用例过不了是什么鬼啊参考代码:k,m,n=map(int,input().split())lst=list(reversed(sorted(map(int,input().split()))))smr=0ifm>n:smr+=(sum(lst[:n])/n+su 题解列表 2023年03月02日 0 点赞 0 评论 527 浏览 评分:0.0
标记一下这个题!!! 解题思路:注意事项:参考代码:****************************************************************************************************** 题解列表 2023年03月02日 0 点赞 0 评论 479 浏览 评分:0.0
编写题解 1018: [编程入门]有规律的数列求和 for(表达式1;表达式2;表达式3){若干语句}//for循环语句及其格式思路:观察这组数据,设第一项的分子为a,分母为b,则第一项为a/b,第二项为(a+b)/a,第三项为((a+b)+a)/(a+b),第四项为(((a+b)+a))+(a+b))/((a+b)+a)......总而言之, 题解列表 2023年03月02日 0 点赞 0 评论 770 浏览 评分:0.0