题解 | #成绩输入输出#
成绩输入输出
https://www.nowcoder.com/practice/eb49750ef0de47168c21761de086d97c?tpId=290&tqId=39799&ru=/exam/oj
#include <stdio.h>
int main()
{
double a,b,c;
scanf("%lf %lf %lf",&a,&b,&c);
printf("%d %d %d",(int)a,(int)b,(int)c);
return 0;
}