1023: [编程入门]选择排序 冒泡排序 摘要:解题思路:注意事项:参考代码:#include<stdio.h>int main(){ int a[10],i,j,temp; for(i=0; i<10; i++){ sc…… 题解列表 2023年11月12日 0 点赞 0 评论 298 浏览 评分:9.9
递归_c++思路简单 摘要:解题思路:很简单自己看能懂注意事项:参考代码:#include<iostream>using namespace std;char arr[50][50];void Display(int size,…… 题解列表 2023年11月12日 0 点赞 0 评论 332 浏览 评分:9.9
我的很简洁 摘要:解题思路:注意事项:参考代码:#include <stdio.h>#include <stdbool.h>bool is_prime(int n) { if (n <= 1) { …… 题解列表 2023年11月12日 0 点赞 0 评论 306 浏览 评分:0.0
三个数最大值1002题解(c++) 摘要:#include using namespace std; int main() { int a; int b; int c; cin>>a>>b>>c; if (a>b>c)…… 题解列表 2023年11月12日 0 点赞 0 评论 340 浏览 评分:2.0
三位数分解 摘要:解题思路:注意事项:参考代码:#include <iostream>using namespace std;int main(){ int three,ge,shi,bai; cin>>t…… 题解列表 2023年11月12日 0 点赞 0 评论 330 浏览 评分:6.0
鸡尾酒疗法 摘要:解题思路:注意事项:参考代码:#include<bits/stdc++.h>using namespace std;int main(){ int n; double x,y,d,d1…… 题解列表 2023年11月12日 0 点赞 0 评论 536 浏览 评分:8.5
Hello, World!Hello, World!Hello, World! 摘要:解题思路: 注意事项:注意要写成Hello, World!参考代码:#include <bits/stdc++.h>using namespace std;int main(){ cout…… 题解列表 2023年11月12日 0 点赞 0 评论 290 浏览 评分:0.0
成绩排序(Python实现) 摘要:解题思路:注意事项:参考代码:def sort_students(students): students.sort(key=lambda x: (x[2], x[0], x[1])) re…… 题解列表 2023年11月12日 0 点赞 0 评论 441 浏览 评分:0.0
三位数分解(题解) 摘要:解题思路:输入一个三位整数,分三行分别输出这个三位数的百位、十位、个位数。输入格式注意事项:参考代码:#include <bits/stdc++.h>using namespace std;int m…… 题解列表 2023年11月12日 0 点赞 0 评论 465 浏览 评分:9.9
2764: 带余除法 摘要:解题思路:注意事项:cin不能用,参考代码:#include <iostream>using namespace std;int main(){ int a,b,c,d; cin>>a>>…… 题解列表 2023年11月12日 0 点赞 0 评论 448 浏览 评分:9.9