2025/7/25刷题记录 摘要:解题思路:两个整数相除得浮点数结果要将其中一个数强转为浮点要不然会精度丢失注意事项:参考代码:#include<stdio.h>int main(){ int a…… 题解列表 2025年07月25日 0 点赞 0 评论 71 浏览 评分:0.0
求整数的和与均值 摘要:解题思路:注意事项:参考代码:int main(){ int n = 0; scanf("%d", &n);…… 题解列表 2025年06月13日 1 点赞 0 评论 159 浏览 评分:10.0
新手必看,*1.0的运用技巧 摘要:解题思路:对于for的应用程度注意事项:参考代码:#include <stdio.h>int main() { int n,b,sum=0.0; scanf("%d ",&n); for(int i…… 题解列表 2024年11月04日 2 点赞 0 评论 527 浏览 评分:10.0
无聊的星期六 摘要:无聊上个动态。 #include<stdio.h> #include<stdlib.h> int main(){ int size,sum=0; scanf("%d",&size)…… 题解列表 2024年05月25日 0 点赞 0 评论 438 浏览 评分:0.0
编写题解 2796: 求整数的和与均值 摘要:解题思路:注意事项:参考代码:#include<stdio.h>int main(){ int n,a,i,sum=0; scanf("%d",&n); for(i=1;i<=n;i…… 题解列表 2024年02月04日 0 点赞 0 评论 300 浏览 评分:0.0
指针数组的方式求整数的和与均值 摘要:解题思路:注意事项:参考代码:#include<stdio.h>int main(){ int number, total = 0; int *p; scanf("%d", &numbe…… 题解列表 2024年01月11日 0 点赞 0 评论 385 浏览 评分:9.9
2796: 求整数的和与均值 摘要:解题思路:注意事项:参考代码:#include<stdio.h>int main(){ int n; double sum=0.0; scanf("%d",&n); int a[n]; for(int…… 题解列表 2023年11月24日 1 点赞 0 评论 213 浏览 评分:0.0
用函数和数组求解整数的和与平均值 摘要:解题思路:分别构建求和函数和求均值函数,通过函数的调用实现功能输出注意事项:在C语言中,数组的大小不能直接用变量n来定义,需要使用动态内存分配来实现(例如malloc函数)。如果你想定义一个大小可变的…… 题解列表 2023年09月21日 0 点赞 0 评论 588 浏览 评分:9.9
求整数的和与均值 摘要:参考代码: ```c #include int main() { int n; scanf("%d",&n); int a; double sum=0; for(int i=…… 题解列表 2023年09月06日 0 点赞 1 评论 227 浏览 评分:0.0