1017: [编程入门]完数的判断 摘要:import java.io.*; import java.util.ArrayList; public class Main { public static BufferedRea…… 题解列表 2022年05月11日 0 点赞 0 评论 513 浏览 评分:0.0
1018: [编程入门]有规律的数列求和 摘要:import java.io.*; /** * 规律:第一项的分母是 1,分子是 2,往后分母是前一项的分子,分子是前一项的分子加上分母。 */ public class Main…… 题解列表 2022年05月11日 0 点赞 0 评论 317 浏览 评分:0.0
编写题解 1182: 人民币问题 摘要:解题思路:注意事项:参考代码:#include<stdio.h> int main(){ int money,approach=0; while(scanf("%d",&money)!=EOF)…… 题解列表 2022年05月11日 0 点赞 0 评论 392 浏览 评分:0.0
编写题解 1183: 人见人爱A+B 无 摘要:解题思路:注意事项:参考代码:#include <stdio.h> void add_A_B( long *A, long *B ); int main(){ long A[3], B[…… 题解列表 2022年05月11日 0 点赞 0 评论 434 浏览 评分:0.0
1019: [编程入门]自由下落的距离计算 摘要:import java.io.*; /** * 规律: * 高度 1000,第 5 次: * 1000 / 2 / 2 / 2 / 2 / 2 = 31.25 * 1000 + …… 题解列表 2022年05月11日 0 点赞 0 评论 476 浏览 评分:0.0
编写题解 1184: 众数问题 摘要:解题思路:注意事项:参考代码:#include<stdio.h>#define N 50001typedef struct SNum{ int s; &nbs 题解列表 2022年05月11日 0 点赞 0 评论 460 浏览 评分:9.9
1020: [编程入门]猴子吃桃的问题 摘要:import java.io.*; /** * 从第 N 天剩下一个桃子时退回第一天 */ public class Main { public static Buffe…… 题解列表 2022年05月11日 0 点赞 0 评论 721 浏览 评分:0.0
1021: [编程入门]迭代法求平方根 摘要:import java.io.*; public class Main { public static BufferedReader in = new BufferedReader(n…… 题解列表 2022年05月11日 0 点赞 0 评论 433 浏览 评分:0.0
数组的距离题解 摘要:解题思路:注意事项:参考代码:#include<bits/stdc++.h>using namespace std;int main(){ int n,m; int ans; cin…… 题解列表 2022年05月11日 0 点赞 0 评论 351 浏览 评分:0.0
编写题解 1186: 倒杨辉三角形 摘要:解题思路:注意事项:参考代码:#include<stdio.h>int num(int p);//定义函数求整数位数int main(void){ int n; while(scanf("%d…… 题解列表 2022年05月11日 0 点赞 1 评论 451 浏览 评分:8.0