这一段有没有问题啊```
#include <iostream.h>
main()
{
float A;
float B;
float C;
cin >>A >>B >>C ;
float D1;
float D2;
D1=A+B+C;
D2=(A+B+C)/3;
cout <<"总分" <<D1 <<"\n" <<"平均分" <<D2 <<"\n";
if(D2>=90)
cout <<"等级 甲 \n";
if(D2>=75&&D2<90)
cout <<"等级 乙 \n";
if(D2<75)
cout <<"等级 丙 \n";
}