题解列表

筛选

姓名排序 (C++代码)

摘要:解题思路:简单理解通俗易懂注意事项:参考代码:#include <iostream> #include <algorithm> using namespace std; int m,n; in……

Minesweeper (C++代码)

摘要:解题思路:参考代码:#include<bits/stdc++.h> using namespace std;   int  high, width; char Map[103][103]; ……

可AC(C语言代码)

摘要:解题思路:注意事项:参考代码:#include<stdio.h>int main(){ int n, m, i, s, sum = 0; scanf("%d", &n); i = 1; while (……

可AC(C语言代码)

摘要:解题思路:注意事项:参考代码:#include<stdio.h>int main(){ int n, min = 0; while (scanf("%d", &n) != EOF) { if (n)……

可AC (C语言代码)

摘要:解题思路:注意事项:参考代码:#include<stdio.h>int main(){ char str[80]; int i; while (gets(str)!=NULL) { i = 0; ……