简单易懂while循环就可以完成 摘要:解题思路:注意事项:参考代码:#include<stdio.h>int main(){ long int a,n,Tom; while(scanf("%ld",&n)!=EOF) { …… 题解列表 2024年11月11日 0 点赞 0 评论 130 浏览 评分:9.9
看不懂直接喷我 摘要:解题思路:注意事项: 看我评论!!!!!参考代码: #include #include int main() { int i; char a[300]; gets (a); int num=strle…… 题解列表 2024年11月11日 0 点赞 1 评论 70 浏览 评分:9.9
1049: [编程入门]结构体之时间设计 摘要:解题思路:注意事项:参考代码:#include<stdio.h> struct today getstruct(void); void output(struct today x); struc…… 题解列表 2024年11月11日 1 点赞 0 评论 112 浏览 评分:0.0
The 3n + 1 problem,goto真好用! 摘要:解题思路:注意事项:参考代码:#include"bits/stdc++.h" using namespace std; int main(){ // 定义变量a, b, c和数组d,l用…… 题解列表 2024年11月11日 0 点赞 0 评论 64 浏览 评分:0.0
哥德巴赫猜想做题心得 摘要:解题思路:对称求和以及对素数的判断注意事项:这里我们需要理解题目的目的-输入n是偶数,这使得我们的循环是对称的(既(2-n)这个区间) 所以头尾相加可求得n 此时对题目的理解转变成判断首位数字是否同时…… 题解列表 2024年11月11日 0 点赞 0 评论 47 浏览 评分:0.0
C语言训练-8除不尽的数 摘要:```cpp #include using namespace std; int main() { cout…… 题解列表 2024年11月11日 0 点赞 0 评论 53 浏览 评分:6.0
c语言简单数组解报数问题 摘要:解题思路:注意事项:参考代码:#includeint main(){ int arr[201]; int n,i,j; scanf ("%d",&n); for (i=0;i<n;i++) //…… 题解列表 2024年11月11日 0 点赞 0 评论 50 浏览 评分:0.0
最低通行费 (数字三角形模型dp) 摘要: 二选一:我也不知道为什么限制为什么不同。 方法一: #include using namespace std; const int N=110; i…… 题解列表 2024年11月11日 0 点赞 0 评论 34 浏览 评分:9.9
直接写就行了 摘要:解题思路:注意事项:参考代码:#include<stdio.h> #include<math.h> int main() { int i,j=0,n,Sn=0; scanf…… 题解列表 2024年11月11日 1 点赞 0 评论 199 浏览 评分:9.9
自定义整数处理 摘要:import java.util.Scanner;public class JavaTestBank_45 { public static void main(String[] args) { …… 题解列表 2024年11月11日 0 点赞 0 评论 136 浏览 评分:9.9