对题2821:传址传参的使用,以及循环计数 摘要:解题思路:本题主要在于要在每个人操作时,要将其序号以及倍数的灯转换一次形态,所以为了简化代码结构,所以可以构造一个函数,每次在对应的位置调用该函数,使得数组中的数值由0到1或者由1到0发生一次转变,从…… 题解列表 2024年09月10日 0 点赞 0 评论 125 浏览 评分:9.9
开关灯(用数组存灯的数量,值为0或1,判断灯开关的状态) 摘要:解题思路: 思路写标题里了,具体的言语不好说了,看代码吧 参考代码: ```c #include int main() { int n,m; scanf("%d%d",&n,&m)…… 题解列表 2023年09月18日 0 点赞 1 评论 524 浏览 评分:9.9
开关灯(基本操作) 摘要: #include //int a[5001] = {0}; int main() { int n, m, i, j, t = 0; scanf("%d%d"…… 题解列表 2022年12月23日 0 点赞 0 评论 801 浏览 评分:9.9
IKUN手把手教你 开关灯(小黑子勿进=_=||) 摘要:解题思路: 这里简单说一下吧,说到这里,请看我的优质答案!相信爱坤都能明白=_=||注意事项: 他这个输出的设置就很鸡贼,中间有逗号,最后没有逗号,所以又要我int kun…… 题解列表 2023年01月07日 0 点赞 1 评论 413 浏览 评分:8.7
题解 2821: 开关灯 (思路:单个灯泡按顺序判断并输出) 摘要:```c #include #include int main() { int i,j,N,M,sign=0; bool a; scanf("%d%d",&N…… 题解列表 2024年04月04日 0 点赞 2 评论 148 浏览 评分:0.0
开关灯的详细解答 摘要:#include<stdio.h>int main(){ int m,n,i,j; scanf("%d %d",&n,&m); //输出顺序不能错 int a[n+1]; /*第一个人的行为*/ f…… 题解列表 2023年02月14日 0 点赞 0 评论 154 浏览 评分:0.0
2821: 开关灯 摘要:解题思路:注意事项:参考代码:#include <stdio.h> int main() { int n, m, i, j,t=0; int a[5001] …… 题解列表 2024年10月31日 0 点赞 0 评论 101 浏览 评分:0.0
开关灯 C简单易懂 摘要:#### 解题思路: 用数组模拟开关灯 #### 参考代码 ```cpp #include #include #define maxn 5010 int a[maxn]; int …… 题解列表 2023年04月07日 0 点赞 0 评论 216 浏览 评分:0.0
2821: 开关灯(C语言) 摘要: #include int main() { int N;//灯的数量 scanf("%d",&N); int M;//人的数量 scanf("%d",&M); …… 题解列表 2023年07月24日 0 点赞 0 评论 108 浏览 评分:0.0
普通的写法 摘要:```cpp #include using namespace std; int a[5001],n,i,j,m; int main() { cin>>n>>m; boo…… 题解列表 2023年05月01日 0 点赞 0 评论 143 浏览 评分:0.0