题解列表

筛选

求平方和-题解(C++代码)

摘要://求两个数的平方和实际是求a*a+b*b //#include using namespace std; int main() { int a,b; cin>>a>>b;- c……