编写题解 1738: 排序 摘要:```c #include int main() { int num,nums[100],i,j,temp; while(~scanf("%d",&num)){ for…… 题解列表 2024年06月03日 0 点赞 0 评论 551 浏览 评分:9.9
编写题解 3020: 最大数位置 摘要:```c #include int main() { int nums[1000],num,i,max=-1,index=0; scanf("%d",&num); for(i=…… 题解列表 2024年06月03日 4 点赞 0 评论 725 浏览 评分:10.0
编写题解 2544: N以内累加求和 摘要:```c #include int main() { int num,i,sum=0; scanf("%d",&num); for(i=0;i…… 题解列表 2024年06月03日 0 点赞 0 评论 281 浏览 评分:9.9
算法思维弱,尽力了 摘要:解题思路:注意事项:参考代码:#include<bits/stdc++.h>using namespace std;void sc (int a,int b, int c){ cout << a…… 题解列表 2024年06月03日 0 点赞 0 评论 260 浏览 评分:0.0
编写题解 1043: [编程入门]三个数字的排序 摘要:```c #include #define N 3 int main(){ int nums[N],i=0,j,temp; while(i…… 题解列表 2024年06月03日 0 点赞 0 评论 271 浏览 评分:9.9
编写题解 2806: 人口增长问题 摘要:解题思路:注意事项:参考代码:#include<bits/stdc++.h>using namespace std;int main(){int x,n;cin>>x>>n;double s=x*1.…… 题解列表 2024年06月02日 0 点赞 0 评论 211 浏览 评分:0.0
编写题解 2831: 画矩形 摘要:解题思路:注意事项:参考代码:#include<bits/stdc++.h>using namespace std;int main(){int a,b;bool d;char c;cin>>a>>b…… 题解列表 2024年06月02日 0 点赞 0 评论 125 浏览 评分:0.0
用函数写的 摘要:解题思路:注意事项:参考代码:def get_sum(a=4,b=3): a,b =map(int,input().split()) sum = a%b print(sum)get_…… 题解列表 2024年06月02日 0 点赞 0 评论 316 浏览 评分:9.9
递归法(辗转相除法)求最大公约数 摘要:解题思路:用辗转相除法求最大公约数,在借助最大公约数求最小公倍数注意事项:参考代码:def yue(m,n): if n==0:return m else:return yue(n,m%n…… 题解列表 2024年06月01日 0 点赞 0 评论 314 浏览 评分:9.9
C++-使用动态数组,使用检查目标数组是否重复或检查原数组待输入值是否重发 摘要:解题思路: 排序:使用的普通的冒泡排序,其他的排序也可以无影响 去重: 思路1:检测目标数组是否存在与当前出原数组待输入项相等的值 思路2:检测原数组待输入项i与i-1项是否相等 注意事…… 题解列表 2024年06月01日 0 点赞 0 评论 177 浏览 评分:9.9