题解列表

筛选

"简单的a+b"题解

摘要:解题思路:无注意事项:此题是求多组数据,可用while(cin>>a>>b)来输入每一组数据;为了格式,所以得在输出后加上\n转义字符或endl来换行参考代码:#include<iostream>us……

1117: K-进制数

摘要:```cpp #include using namespace std; int K; int cl(int num,int front) { int temp=0; f……