2784普普通通的解题方法 摘要:解题思路:注意事项:参考代码:#include<stdio.h>int main(){ int n,m; scanf("%d%d",&n,&m); if (n >=10 || m>=20) prin…… 题解列表 2024年11月23日 0 点赞 0 评论 223 浏览 评分:0.0
2783普普通通的解题方法 摘要:解题思路:注意事项:参考代码:#include<stdio.h>int main(){ int n; scanf("%d",&n); if (n >=10 && n<=99) printf("1")…… 题解列表 2024年11月23日 0 点赞 0 评论 319 浏览 评分:0.0
2782普普通通的解题方法 摘要:解题思路:注意事项:参考代码:#include<stdio.h>int main(){ int n,m; scanf("%d%d",&n,&m); if (n<m) printf("<"); if …… 题解列表 2024年11月23日 0 点赞 0 评论 347 浏览 评分:0.0
普普通通的解题方法 摘要:解题思路:注意事项:参考代码:#include<stdio.h>int main(){ int n; scanf("%d",&n); if (n<0) printf("negative"); if …… 题解列表 2024年11月23日 0 点赞 0 评论 617 浏览 评分:0.0
注意题目要求 摘要:解题思路:注意事项:参考代码:#include<stdio.h>int main(){ int a,b,c=0,d=0,e=0,f=0,sum=0; scanf("%d",&a); …… 题解列表 2024年11月23日 0 点赞 0 评论 188 浏览 评分:0.0
多边形内角和(for循环解题方法) 摘要:解题思路:注意事项:参考代码:#include<stdio.h>int main(){ int i,n,a,sum=0,b,c; scanf("%d",&n); for(i=0;i<…… 题解列表 2024年11月23日 0 点赞 0 评论 191 浏览 评分:0.0
送分了........ 摘要:解题思路:注意事项:参考代码:#include<stdio.h>int main(){ int a; scanf("%d",&a); while(a) { pri…… 题解列表 2024年11月23日 0 点赞 0 评论 121 浏览 评分:0.0
核电站问题(C语言) 摘要:解题思路:定义了一个名为 fun 的函数来计算一个与给定整数 n 相关的数值,并在 main 函数中通过输入 n 来调用 fun 函数并输出结果在 fun 函数中,对于 n …… 题解列表 2024年11月23日 0 点赞 0 评论 189 浏览 评分:10.0
最复杂的解题方法 摘要:解题思路:注意事项:参考代码:#include<stdio.h>#include<math.h>int sxh(int a){ int b,c,d; b=a%10; c=a/10%1…… 题解列表 2024年11月23日 0 点赞 0 评论 109 浏览 评分:0.0
结构体实现链表,遍历求和 #1585: 蓝桥杯算法训练VIP-链表数据求和操作 (C++) 摘要:``` #include #include int res1, res2; typedef struct lNode { int num1, num2; struct lN…… 题解列表 2024年11月23日 0 点赞 0 评论 158 浏览 评分:0.0