题解列表

筛选

python-质因数2

摘要:解题思路:注意事项:注意输入为质数时直接输出参考代码:from math import sqrt          def Isprime(x):         for i in range(……

A+B from beiqiao(C++)

摘要:#include<iostream> using namespace std; int main() {     int a,b;     while(cin>>a>>b)    //编译器……

[编程入门]求和训练

摘要:```python a,b,c = map(int,input().split()) seq_a = [i for i in range(1,a+1)] seq_b = [i**2 for ……