编写题解 1047: [编程入门]报数问题 摘要:解题思路:利用动态数组,先把所有的数字输入,然后当3或者3的倍数时,就移除注意事项:在处理移除的时候,要注意当数组元素个数等于下标的时候,要把下标置为0,不然的话,index会一直增加,超出索引此处使…… 题解列表 2021年10月20日 0 点赞 1 评论 136 浏览 评分:0.0
约瑟夫环求解 摘要:解题思路:注意事项:参考代码:n = int(input())a = 0b = 0j = -1l = []for i in range(0, n): a += 1 l.append(a)w…… 题解列表 2023年12月29日 0 点赞 0 评论 75 浏览 评分:0.0
C语言程序设计教程(第三版)课后习题10.5 (C++语言代码) 摘要:解题思路:额,这道题目用循环链表写应该很简单(#include<list>),但既然是C语言基础,就用最朴素的方法来写。用new动态分配N+1个bool空间,用下标表示人的序号,true代表没有报数到…… 题解列表 2018年01月04日 0 点赞 0 评论 709 浏览 评分:0.0
C语言程序设计教程(第三版)课后习题10.5 (C语言代码) 摘要:解题思路和注意事项:本题我的思路是用数组来做,初始值为1,当其退出的时候将其置为0,下面讲解: 1、首先定义一个数组,将值都置为1; 2、开始循环,因为要到只剩一个人为止,…… 题解列表 2018年05月05日 1 点赞 0 评论 933 浏览 评分:0.0
[编程入门]报数问题 摘要:解题思路:复制一个列表,进行循环,在原列表中去除符合条件的元素注意事项:参考代码:n = int(input())a = list(range(1,n+1))count = 0while len(a)…… 题解列表 2022年01月11日 0 点赞 0 评论 120 浏览 评分:0.0
一位热心的老大爷-精简-报数问题-题解(C语言代码) 摘要: #include #define N 100 int main(){ int a[N]={0}; int n,k; int…… 题解列表 2019年12月06日 0 点赞 0 评论 454 浏览 评分:0.0
通过单链表删除,省的数组太大,导致循环多次.莫名其妙的char* 摘要:#include<stdio.h> #include<string.h> #include<malloc.h> typedef struct Node{ int c; s…… 题解列表 2022年01月19日 0 点赞 0 评论 105 浏览 评分:0.0
[编程入门]报数问题-题解(C++代码) 摘要:# 思路 模拟过程。 下面代码是使用数组进行模拟的。 # 代码 ```cpp #include int main() { int n; std::cin >> n; …… 题解列表 2019年12月29日 0 点赞 0 评论 370 浏览 评分:0.0
C语言程序设计教程(第三版)课后习题10.5 (C语言代码) 摘要:解题思路:注意事项:参考代码:不知道哪里错了#include<stdio.h>int main(){ int index=0,step=1,count=0,people[100]={0},outs[1…… 题解列表 2017年12月19日 0 点赞 0 评论 539 浏览 评分:0.0
非常基础的方式 摘要:解题思路:注意事项:参考代码:#include <stdio.h>#include <string.h>int main(){ int arr[20] = { 0 }; int i = 0; int …… 题解列表 2023年01月26日 0 点赞 0 评论 67 浏览 评分:0.0