- 谁拿了最多奖学金
- 2009-05-16 18:57:21 @
#include
class student
{
private:
char name[20];
int avg,total;
char ganbu,xibu;
int lunwen;
public:
void set_student()
{
cin>>name>>avg>>total>>ganbu>>xibu>>lunwen;
}
long int total_scholarship()
{
return(8000*((avg>80)&&(lunwen>=1))+4000*((avg>85)&&(total>80))+2000*(avg>90)+1000*((avg>85)&&(xibu=='Y'))+850*((total>80)&&(ganbu=='Y')));
}
void display()
{
cout
2 条评论
-
JackDavid127 LV 10 @ 2009-05-16 20:01:53
同ls
我认为lz没有加一句关键的语句:using namespace std; -
2009-05-16 19:12:09@
有可能
我们使用的是GCC和G++的编译器,不是VC
- 1