c语言简单数组解报数问题 摘要:解题思路:注意事项:参考代码:#includeint main(){ int arr[201]; int n,i,j; scanf ("%d",&n); for (i=0;i<n;i++) //…… 题解列表 2024年11月11日 0 点赞 0 评论 217 浏览 评分:0.0
一定要细心啊(不难) 摘要:解题思路:注意事项:参考代码:#include<stdio.h> int main(void) { int n; printf("Please enter the number…… 题解列表 2024年12月28日 1 点赞 0 评论 381 浏览 评分:0.0
real_count经典命名 摘要:#include<stdio.h> int main(void) { int n; scanf("%d", &n); int flag[100] = {0}; …… 题解列表 2024年12月28日 0 点赞 0 评论 323 浏览 评分:0.0
简单易懂 给个赞 嘻嘻 摘要:解题思路:注意事项:参考代码:#include<stdio.h>#define N 10000void text(int * a , int n){ int co…… 题解列表 2025年01月09日 2 点赞 0 评论 440 浏览 评分:0.0
模拟报数过程的直接解法 摘要:解题思路:注意事项:参考代码:#include<stdio.h>#include<stdlib.h>#include<string.h>int main(){&nb…… 题解列表 2025年01月12日 1 点赞 0 评论 407 浏览 评分:0.0
数组实现(数组的本质也是指针) 摘要:解题思路:注意事项:参考代码:#include<stdio.h>intmain(){ intn,a[100]; …… 题解列表 2025年02月09日 2 点赞 0 评论 536 浏览 评分:0.0
Python代码-报数问题 摘要:```pythonfrom collections import dequeif __name__ == '__main__': n = int(input()) qu…… 题解列表 2025年02月17日 0 点赞 0 评论 326 浏览 评分:0.0
tony同学思路 稍作修改(C语言代码) 摘要:解题思路:注意事项:参考代码: 参考tony 同学的思路#include<stdio.h>/*一圈人说的就是一个循环抽象来说就是一圈循环要T了多少个成员,不妨把T掉的…… 题解列表 2018年01月28日 14 点赞 0 评论 1290 浏览 评分:2.0
[编程入门]报数问题-题解(Java代码)简单易懂(赋值交换) 摘要:> ------------ public static void num(int x) { int a[] = new int[x]; int …… 题解列表 2020年03月29日 0 点赞 0 评论 800 浏览 评分:2.0