2783普普通通的解题方法 摘要:解题思路:注意事项:参考代码:#include<stdio.h>int main(){ int n; scanf("%d",&n); if (n >=10 && n<=99) printf("1")…… 题解列表 2024年11月23日 0 点赞 0 评论 546 浏览 评分: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 评论 728 浏览 评分:2.0
普普通通的解题方法 摘要:解题思路:注意事项:参考代码:#include<stdio.h>int main(){ int n; scanf("%d",&n); if (n<0) printf("negative"); if …… 题解列表 2024年11月23日 0 点赞 0 评论 908 浏览 评分: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 评论 366 浏览 评分: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 评论 386 浏览 评分:0.0
送分了........ 摘要:解题思路:注意事项:参考代码:#include<stdio.h>int main(){ int a; scanf("%d",&a); while(a) { pri…… 题解列表 2024年11月23日 0 点赞 0 评论 280 浏览 评分:0.0
核电站问题(C语言) 摘要:解题思路:定义了一个名为 fun 的函数来计算一个与给定整数 n 相关的数值,并在 main 函数中通过输入 n 来调用 fun 函数并输出结果在 fun 函数中,对于 n …… 题解列表 2024年11月23日 0 点赞 0 评论 391 浏览 评分: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 评论 306 浏览 评分:0.0
结构体实现链表,遍历求和 #1585: 蓝桥杯算法训练VIP-链表数据求和操作 (C++) 摘要:``` #include #include int res1, res2; typedef struct lNode { int num1, num2; struct lN…… 题解列表 2024年11月23日 0 点赞 0 评论 358 浏览 评分:0.0
题解 1231: 菜鸟解法 摘要:解题思路:注意事项:参考代码:#include<stdio.h>int main(){ int i,j,n,a[30][30]; while(scanf("%d",&n)==1){ …… 题解列表 2024年11月23日 1 点赞 0 评论 567 浏览 评分:9.9