新人报道,新的小程序运行出错是那错了?
#include <iostream>void main()
{
int a;
cout<<"请输入学生成绩:";
cin>>a;
if(a>=90)
{
cout<<"优">>endl;
}
else if((a>=80)&&(a<90))
{
cout<<"良好">>endl;
}
else if((a>=60)&&(a<80))
{
cout<<"中">>endl;
}
else if(a<60)
{
cout<<"差">>endl;
}
}
点击运行的时候说执行出错~请高手点评下~谢谢~