题解列表

筛选

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)    //编译器……