题解列表
Hello, World!Hello, World!Hello, World!
摘要:解题思路: 注意事项:注意要写成Hello, World!参考代码:#include <bits/stdc++.h>using namespace std;int main(){ cout……
成绩排序(Python实现)
摘要:解题思路:注意事项:参考代码:def sort_students(students): students.sort(key=lambda x: (x[2], x[0], x[1])) re……
2764: 带余除法
摘要:解题思路:注意事项:cin不能用,参考代码:#include <iostream>using namespace std;int main(){ int a,b,c,d; cin>>a>>……
1953: 三位数分解
摘要:解题思路:注意事项:数位的算法参考代码:#include <iostream>using namespace std;int main(){ int a,b,c,d; cin>>d; ……
1953: 三位数分解
摘要:解题思路:注意事项:数位的算法参考代码:#include <iostream>using namespace std;int main(){ int a,b,c,d; cin>>d; ……
原神andc++萌新出品 题解:1267: A+B Problem
摘要:原神 启动!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!参考代码: #include<iostream>using namespace std;int main(){ ……
2768: 与圆相关的计算
摘要:解题思路:注意事项:a要定义成小数参考代码:#include <bits/stdc++.h>using namespace std;int main(){ double a,b,c,d; ……