题解列表

筛选

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;   ……

2764: 带余除法

摘要:解题思路:注意事项:cin不能用,参考代码:#include <iostream>using namespace std;int main(){    int a,b,c,d;    cin>>a>>……

三位数分解(题解)

摘要:解题思路:输入一个三位整数,分三行分别输出这个三位数的百位、十位、个位数。输入格式注意事项:参考代码:#include <bits/stdc++.h>using namespace std;int m……

成绩排序(Python实现)

摘要:解题思路:注意事项:参考代码:def sort_students(students):    students.sort(key=lambda x: (x[2], x[0], x[1]))    re……

鸡尾酒疗法

摘要:解题思路:注意事项:参考代码:#include<bits/stdc++.h>using namespace std;int main(){     int n;     double x,y,d,d1……

三位数分解

摘要:解题思路:注意事项:参考代码:#include <iostream>using namespace std;int main(){    int three,ge,shi,bai;    cin>>t……

我的很简洁

摘要:解题思路:注意事项:参考代码:#include <stdio.h>#include <stdbool.h>bool is_prime(int n) {    if (n <= 1) {        ……