自定义函数之数字后移,vector 摘要:解题思路:注意事项:参考代码:#include <iostream>#include <cmath>#include <iomanip>#include<cstdio>#include<cstring…… 题解列表 2023年12月29日 0 点赞 0 评论 202 浏览 评分:0.0
1002: [编程入门]三个数最大值 摘要:解题思路:注意事项:参考代码:#include <bits/stdc++.h>using namespace std;int main(){ int a,b,c; cin >> a>>b>…… 题解列表 2023年12月29日 0 点赞 0 评论 314 浏览 评分:0.0
题解 1043: [编程入门]三个数字的排序 摘要:解题思路:注意事项:参考代码:#include <bits/stdc++.h>using namespace std;int main(){ int a,b,c; cin>>a>>b>>c…… 题解列表 2023年12月30日 0 点赞 0 评论 214 浏览 评分:0.0
1043: [编程入门]三个数字的排序 摘要:解题思路:注意事项:参考代码:#include <bits/stdc++.h>using namespace std;int main(){ int a,b,c; cin>>a>>b>>c…… 题解列表 2023年12月30日 0 点赞 0 评论 213 浏览 评分:0.0
2789: 骑车与走路 摘要:解题思路:注意事项:参考代码:#include<bits/stdc++.h>using namespace std;int main(){ int b,c; double a; cin>>a…… 题解列表 2023年12月30日 0 点赞 0 评论 183 浏览 评分:0.0
1015:【编程入门】求和训练 摘要:解题思路:将1到a的和,1到b的平方和,1到c的倒数和依次求出,最后将这三项和相加。注意事项:注意输出答案要保留2位小数。参考代码:#include<stdio.h>int main(){ in…… 题解列表 2023年12月30日 0 点赞 0 评论 206 浏览 评分:0.0
1011: [编程入门]最大公约数与最小公倍数 摘要:解题思路:辗转相除法注意事项:参考代码:#include <stdio.h>int gcd(int m, int n){ if (m % n == 0) return n; else re…… 题解列表 2023年12月30日 0 点赞 0 评论 233 浏览 评分:0.0
简单易懂的答案 摘要:解题思路:注意事项:参考代码:#include<stdio.h>int main(){ int i = 0; int a = 0; int ii = 0; int count = 0; int arr…… 题解列表 2023年12月30日 0 点赞 0 评论 227 浏览 评分:0.0
链表模仿学习 摘要:#include<stdio.h> #include<stdlib.h> typedef struct student{ int id; int score; s…… 题解列表 2023年12月30日 0 点赞 0 评论 221 浏览 评分:0.0
java解题之链表合并 摘要:import java.util.Scanner; import java.util.ArrayList; import java.util.Collections; import java.u…… 题解列表 2023年12月30日 0 点赞 0 评论 258 浏览 评分:0.0