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

学生基本信息输入输出

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-30 22:03
门头沟学院 Java
用微笑面对困难:我滴妈,【俩月】【实习】【主管】仨debuff吃满了,独立设计开发的项目写了绝大占比的运营板块,你独立开发,那维护、问题复盘、日志更新、bug、策划书全是自己整的? 不建议写那么大,可以从小出发更容易
点赞 评论 收藏
分享
评论
1
收藏
分享

创作者周榜

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