```cpp
#include<iostream>
#include<iomanip>
#include<cstdio>
using namespace std;
int main()
{
long no;
float CLanguage;
float Math;
float English;
scanf("%ld;%f,%f,%f",&no,&CLanguage,&Math,&English);
cout<<"The each subject score of No. "<<no<<" is "<<fixed<<setprecision(2)<<CLanguage<<", "<<Math<<", "<<English<<"."<<endl;
}</cstdio></iomanip></iostream>
```其实,这道题就考察了一下基本知识点。如果大家知道setprecision(n)这个函数,它的作用控制浮点数显示的有效数字个数,可以用来四舍五入。而fixed,作用:定点方式表示实数,可以确定要显示小数点后几位。
两者搭配一下,既可以四舍五入,又可以确定要显示的位数,就这样,溜了溜了。