编写题解 1017: [编程入门]完数的判断 摘要:解题思路:注意事项:参考代码:#include<iostream>using namespace std;int main() { int n,sum,a; cin>>n; int list[100]…… 题解列表 2023年01月06日 0 点赞 0 评论 249 浏览 评分:0.0
编写题解 1649: 蓝桥杯算法训练VIP-特殊的数字四十 摘要:解题思路:注意事项:参考代码:#include<stdio.h> int main() { int a; int i = 0; int k1,k2,k3,k4; …… 题解列表 2023年01月07日 0 点赞 0 评论 228 浏览 评分:0.0
参考来自csdn 摘要:解题思路:这题我一开始总想着要确定一颗起始的珠子,再一直按照顺时针走到尾;看了题解才知道,只要挨着的都可以合成,不一定要按照从头到尾的顺序绕一圈。根据题意,可以发现每次合成需要A-B-C三颗珠子,A-…… 题解列表 2023年01月07日 0 点赞 0 评论 368 浏览 评分:0.0
蓝桥杯算法训练VIP-水仙花 摘要:解题思路:注意事项:参考代码:#include<stdio.h>int main(){ int n,i,a,b,c; scanf("%d",&n); for(i=100;…… 题解列表 2023年01月07日 0 点赞 0 评论 278 浏览 评分:0.0
循环入门练习1 摘要:解题思路:注意事项:参考代码:#include<stdio.h>int main(){ int i,s=0; for(i=0;i<=1000;i++) { …… 题解列表 2023年01月07日 0 点赞 0 评论 340 浏览 评分:0.0
循环入门练习2 摘要:解题思路:注意事项:参考代码:#include<stdio.h>int main(){ int i,s=0; for(i=0;i<=1000;i++) { …… 题解列表 2023年01月07日 0 点赞 0 评论 282 浏览 评分:0.0
编写题解 1018: [编程入门]有规律的数列求和 摘要:解题思路:注意事项:参考代码:#include<iostream>#include <iomanip>using namespace std;int main() { int N; cin>>N; d…… 题解列表 2023年01月07日 0 点赞 0 评论 324 浏览 评分:0.0
1009——[编程入门]数字的处理与判断(仿写题解) 摘要: import java.util.Scanner; public class Main { public static void main(String[]…… 题解列表 2023年01月07日 0 点赞 0 评论 336 浏览 评分:0.0
编写题解 1019: [编程入门]自由下落的距离计算 摘要:解题思路:为什么我不给sum给与初值就会报错呢?注意事项:参考代码:#include<iostream>#include<iomanip>using namespace std;int main() …… 题解列表 2023年01月07日 0 点赞 0 评论 220 浏览 评分:0.0
编写题解 1020: [编程入门]猴子吃桃的问题 摘要:解题思路:注意事项:参考代码:#include#includeusing namespace std;int main() {int N,all=1;cin>>N;for(int i=1;i<N;i+…… 题解列表 2023年01月07日 0 点赞 0 评论 241 浏览 评分:0.0