1014:阶乘求和 摘要:解题思路:注意事项:参考代码:#include<stdio.h>int main(){ int n,i; long result=1,sn=0; scanf("%d",…… 题解列表 2025年10月21日 2 点赞 0 评论 33 浏览 评分:0.0
1071:阶乘公式求值 摘要:解题思路:注意事项:参考代码:#include<stdio.h>double fact(int k){ int i; double re…… 题解列表 2025年10月21日 0 点赞 0 评论 30 浏览 评分:0.0
1011:求最大公因数和最小公倍数 摘要:解题思路:注意事项:参考代码:#include<stdio.h>int gcd(int a,int b){ int temp; whil…… 题解列表 2025年10月21日 0 点赞 0 评论 37 浏览 评分:0.0
2819:数字反转 摘要:解题思路:注意事项:参考代码:#include<stdio.h>int main(){ int num,remained,reserved=0; scanf("%d",…… 题解列表 2025年10月21日 0 点赞 0 评论 29 浏览 评分:0.0
1141:百钱百鸡 摘要:解题思路:注意事项:参考代码:#include<stdio.h>int main(){ int cock,hen,chicken; fo…… 题解列表 2025年10月21日 0 点赞 0 评论 35 浏览 评分:2.0