题解列表
编写题解 1018: [编程入门]有规律的数列求和
摘要:解题思路:奥妙注意事项:参考代码:#include "stdio.hint main() { int n; float sum=0.0,a=2.0,b=1.0; scanf("%d"……
1099: 校门外的树
摘要:解题思路:注意事项:参考代码:#include<bits/stdc++.h>using namespace std;int main(){ char L[10001]={0}; int a……
1098: 陶陶摘苹果
摘要:解题思路:注意事项:参考代码:#include<bits/stdc++.h>using namespace std; const int apple = 10; // 苹果数量int main() {……
1096: Minesweeper
摘要:解题思路:注意事项:参考代码:#include<bits/stdc++.h>#define MAX 100 // 地图最大尺寸 using namespace std; char position[M……
信息学奥赛一本通T1252-走迷宫
摘要:```
#include
#define x first
#define y second
using namespace std;
typedef pair pii;
……
编写题解 1031: [编程入门]自定义函数之字符串反转(利用切片解决)
摘要:解题思路:注意事项:参考代码:def main(): a = input() print(a[::-1])main()……