1047: [编程入门]报数问题(约瑟夫环) 摘要:解题思路: 数组、vector 及公式分别实现注意事项:参考代码:#include<iostream> using namespace std; const int N = 1e2 + 10; …… 题解列表 2024年05月08日 0 点赞 0 评论 73 浏览 评分:9.9
C语言改版001 摘要:#include<stdio.h>#include<stdlib.h>typedef struct student{ int number; struct student*next;}no…… 题解列表 2024年03月19日 0 点赞 0 评论 80 浏览 评分:0.0
约瑟夫的环 摘要:解题思路:注意事项:参考代码:import java.util.Scanner;public class wc {static Scanner sc=new Scanner(System.in);pu…… 题解列表 2024年03月17日 0 点赞 0 评论 118 浏览 评分:0.0
WB的解题思路 摘要:#include<stdio.h>int main(){ int n; scanf("%d",&n); int count=n; int arr[n]; int …… 题解列表 2024年03月10日 0 点赞 0 评论 95 浏览 评分:0.0
利用数组指针解决问题 摘要:解题思路:双层循环,实现计数123123123;三个一次循环。利用取模i%n;注意事项:注意要让数组长度及时减去1参考代码:#include <stdio.h>#include <stdlib.h>/…… 题解列表 2024年01月31日 0 点赞 0 评论 51 浏览 评分:0.0
报数问题-题解(C语言-简易数组实现) 摘要: #define _CRT_SECURE_NO_WARNINGS #include #define MAX 500 int main() …… 题解列表 2024年01月29日 0 点赞 0 评论 101 浏览 评分:0.0
数组解决报数问题 摘要:解题思路:可直接利用数组进行求解此题,让数组循环遍历,同时把满足条件的情况做特殊标记,最后剩一个未被标记的条件则退出循环输出未被标记的情况即可注意事项:参考代码:#include<iostream>u…… 题解列表 2024年01月25日 0 点赞 0 评论 99 浏览 评分:0.0
用指针和while循环解决报数问题 摘要:解题思路:不采取删除被淘汰者的方式,固定总人数,用0代表被淘汰,1代表未被淘汰。指针顺次指向每个人以模拟报数过程,当每轮次指针指向最后一人时,用while循环使其指回第一人。具体见代码注释。注意事项:…… 题解列表 2024年01月25日 0 点赞 0 评论 111 浏览 评分:0.0
编写题解 1047: [编程入门]报数问题(C语言) 摘要:参考代码:(C语言)#include<stdio.h> int main() { int n; // 人数 scanf("%d", &n); in…… 题解列表 2024年01月25日 0 点赞 0 评论 47 浏览 评分:9.9
java--study||O.o 摘要:参考代码:import java.util.Scanner; public class Main { public static void main(String[] args) …… 题解列表 2024年01月21日 0 点赞 0 评论 148 浏览 评分:9.9