题解列表

筛选

汽水瓶题解

摘要:解题思路:注意事项:参考代码:#include <iostream>#include <algorithm>/* run this program using the console pauser o……

好写》好写

摘要:参考代码:#include<iostream> using namespace std; int main() {     int a,b;     while(cin>>a>>b)   ……

习题习题。

摘要:解题思路:注意事项:参考代码:#include<iostream> #include<cmath> using namespace std; bool judge(int); int main……

思路清晰,操作稳健

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

要啥留啥,

摘要:参考代码:#include<iostream> using namespace std; int main() {   int a, res;     for(int i = 3; i > 0……

Hello, World!!!

摘要:参考代码:#include<iostream> using namespace std; int main() {     cout << "Hello, World!";     retu……

写个判断函数

摘要:参考代码:#include<iostream> #include<cmath> using namespace std; bool judge(int); int main() { fo……

课本上的习题

摘要:参考代码:#include<iostream> #include<cmath> using namespace std; int main() { int x; cin >> x;……

好写》好写

摘要:参考代码:#includeusing namespace std; int main() { int arr[10]; int sum = 0; for(int i = 0; i ……