题解 1160: 出圈

来看看其他人写的题解吧!要先自己动手做才会有提高哦! 
返回题目 | 我来写题解

筛选

[出圈]幸存者问题

摘要:解题思路:注意事项:参考代码:while True:    try:        a, b = map(int, input().strip().split())        l = [i for……

无需链表,一维数组循环解决

摘要:解题思路:注意事项:参考代码:#include<stdio.h>int magic(const int n,int cu){ int a[n];                     //用数组记录……

[出圈]-题解(C语言代码)

摘要:解题思路:注意事项:注意进入死循环之前要给i赋初值,以及count和x每次的重置,还有i++产生的后遗症在判断中通过i-1消除,但是千万不能用i--,因为会改变i的值,打乱整个循环参考代码:#incl……

【出圈】 (C语言代码)

摘要:解题思路:注意事项:参考代码:#include<stdio.h> int main() { int a[100]; int i,j,n,m,cnt,js; while(scanf("%……

出圈---简单易懂

摘要:参考代码:#include <stdio.h> int fun(int n,int m) {     int a[n],i=0,j=0,k=n;     for(int aa=0;aa<n;a……

【出圈】 (C语言代码)

摘要:解题思路:注意事项:参考代码:#include <stdio.h>#include<math.h>int main(){ int m,a[99],c=0,n,i,g=0; while(scanf("%……

出圈,人要麻木了,真的出圈了

摘要:解题思路:注意事项:在判断最后一个函数中的迭代器要两次判断尾参考代码:#include <iostream> #include <vector> using namespace std; voi……