[编程入门]报数问题-题解(C语言代码) 摘要: #include #include int main(){ int n; scanf("%d",&n); int *n…… 题解列表 2019年06月23日 0 点赞 0 评论 535 浏览 评分:0.0
C语言程序设计教程(第三版)课后习题10.5 (C语言代码) 摘要:我认为最简单的解题方式 #include<stdio.h> #include<stdlib.h> int j=0;//全局变量可行 int find(int a[],int n){ …… 题解列表 2018年10月06日 1 点赞 0 评论 556 浏览 评分:0.0
一定要细心啊(不难) 摘要:解题思路:注意事项:参考代码:#include<stdio.h> int main(void) { int n; printf("Please enter the number…… 题解列表 2024年12月28日 0 点赞 0 评论 103 浏览 评分:0.0
C语言程序设计教程(第三版)课后习题10.5 (C++代码)(数学方法) 摘要:参考代码:#include <iostream> using namespace std; int main() { int n,s=0,M=3; cin>>n; for(int i…… 题解列表 2018年02月07日 0 点赞 0 评论 768 浏览 评分:0.0
python 9行实现 摘要:解题思路:注意事项:参考代码:n=int(input())a= list(range(1,n+1))p=2while n > 1: a.pop(p) if p==n-1:p=0 n=…… 题解列表 2022年03月06日 0 点赞 0 评论 140 浏览 评分:0.0
通过数组标记 摘要:解题思路:用数组给每个人标号,将每次循环报3的人赋值0,直到只剩1个找到它的标号。参考代码:#include <stdio.h>// 函数pan用于找出最后剩下的一个元素int pan(int *a,…… 题解列表 2023年11月16日 0 点赞 0 评论 46 浏览 评分:0.0
1047: [编程入门]报数问题,计数取余,数组左移 摘要:解题思路: count计数报数,每次遇 3 数组左移覆盖原编号注意事项:int n,arr[n];没报错,被DEV-CPP坑惨参考代码:#include <stdio.h> #define LEN …… 题解列表 2021年03月12日 0 点赞 0 评论 147 浏览 评分:2.0
tony同学思路 稍作修改(C语言代码) 摘要:解题思路:注意事项:参考代码: 参考tony 同学的思路#include<stdio.h>/*一圈人说的就是一个循环抽象来说就是一圈循环要T了多少个成员,不妨把T掉的…… 题解列表 2018年01月28日 14 点赞 0 评论 981 浏览 评分:2.0
[编程入门]报数问题-题解(Java代码)简单易懂(赋值交换) 摘要:> ------------ public static void num(int x) { int a[] = new int[x]; int …… 题解列表 2020年03月29日 0 点赞 0 评论 471 浏览 评分:2.0