题解列表

筛选

数列问题 (C语言代码)

摘要:简单易懂的代码。参考代码:#include<stdio.h>int main(){ int a[35]={3,4,5}; int i,N; scanf("%d",&N); for(i=3;i<N;i+……

考试评级 (C语言代码)

摘要:解题思路:注意事项:参考代码:#include<stdio.h>#include<math.h>int main(){ int a; scanf("%d",&a); if(80<=a&&a<=100)……

Minesweeper (C++代码)Do you know Minesweeper?

摘要:解题思路:    Do you know Minesweeper?    It&#39;s mean "扫雷"        扫雷玩过没有?没有的话自己打开系统自带的游戏——扫雷,玩一下。    其主……

找寻小妖 (C语言代码)

摘要:解题思路:                就是bfs,但我就不知道哪里错了,求路过的大神求解注意事项:参考代码:#include<stdio.h>#define max 101char map[max……

一起来捉妖 (C++代码)

摘要:解题思路: 水一下就过了参考代码:#include<bits/stdc++.h> #define hh ios::sync_with_stdio(false),cin.tie(0),cout.tie……