题解 | 学生基本信息输入输出

学生基本信息输入输出

https://www.nowcoder.com/practice/58b6a69b4bf943b49d2cd3c15770b9fd

#include <stdio.h>
#include <math.h>
//新学了结构体,想用结构体做一下,然后发现做出来四舍五入的结果不对,又查了下需要用到round函数对其进行四舍五入处理。
struct stu
{
    char stunum[30];
    double scoreC;
    double scoreM;
    double scoreE;
};
void print(struct stu* p)
{
    double C=round(p->scoreC*100)/100.0;
    double M=round(p->scoreM*100)/100.0;
    double E=round(p->scoreE*100)/100.0;   
    printf("The each subject score of No. %s is %.2f, %.2f, %.2f.",p->stunum,C,M,E);
}
int main() {
    struct stu s;
    scanf("%[^;]; %lf,%lf,%lf",&s.stunum,&s.scoreC,&s.scoreM,&s.scoreE);
    print(&s);
    return 0;
}

全部评论

相关推荐

01-26 19:51
门头沟学院 Java
isabener:怎么感觉像群发的呢
点赞 评论 收藏
分享
迷茫的大四🐶:都让开,我tm来啦
点赞 评论 收藏
分享
评论
1
收藏
分享

创作者周榜

更多
牛客网
牛客网在线编程
牛客网题解
牛客企业服务