1096: Minesweeper ```cpp#include#includeusingnamespacestd;constintmaxn=101;intn,m,x[maxn],y[maxn],vist[maxn][maxn];charmap[maxn][maxn];voidcheck(intdx, 题解列表 2022年08月31日 0 点赞 0 评论 610 浏览 评分:9.9
1095: The 3n + 1 problem 摘要:```cpp #include using namespace std; int main() { int m,n,max; while(cin>>m>>n) {…… 题解列表 2022年08月31日 0 点赞 0 评论 643 浏览 评分:9.9
1094: 字符串的输入输出处理 摘要:```cpp #include using namespace std; int main() { int n; cin>>n; getchar(); …… 题解列表 2022年08月31日 0 点赞 0 评论 752 浏览 评分:9.9
1093: 字符逆序 摘要:要注意,a数组是一个字符串数组,输入后最后一项是‘\0’,因此第8行的strlen(a)还要-1 ```cpp #include #include using namespace std; …… 题解列表 2022年08月31日 0 点赞 0 评论 484 浏览 评分:9.9
1092: A+B for Input-Output Practice 摘要:```cpp #include using namespace std; int main() { int n,en,x,sum; cin>>n; for(int…… 题解列表 2022年08月31日 0 点赞 0 评论 496 浏览 评分:9.9
1091: A+B for Input-Output Practice (VII) 摘要:```cpp #include using namespace std; int main() { int a,b; while(cin>>a>>b) c…… 题解列表 2022年08月31日 0 点赞 0 评论 653 浏览 评分:9.9
1090: A+B for Input-Output Practice (VI) 摘要:```cpp #include using namespace std; int main() { int x,n,sum; while(cin>>n) { …… 题解列表 2022年08月31日 0 点赞 0 评论 700 浏览 评分:9.9
1089: A+B for Input-Output Practice (V) 摘要:```cpp #include using namespace std; int main() { int n,en,x,sum; cin>>n; for(int…… 题解列表 2022年08月31日 0 点赞 0 评论 523 浏览 评分:9.9
1088: A+B for Input-Output Practice (IV) 摘要:```cpp #include using namespace std; int main() { int sum,n,x; while(cin>>n&&n) {…… 题解列表 2022年08月31日 0 点赞 0 评论 823 浏览 评分:9.9
1087: A+B for Input-Output Practice (III) 摘要:```cpp #include using namespace std; int main() { int a,b; while(cin>>a>>b&&(a!=0||b!=…… 题解列表 2022年08月31日 0 点赞 0 评论 864 浏览 评分:9.9