我是C ++的新手。我一直在尝试创建一个允许您插入值并显示值的数组。 到目前为止,我创建了一个数组,允许我插入值并显示等级(最高和最低)。
如何打印整个成绩列表?
以下是代码:
int main()
{
int grade;
int num;
int lowest=999;
int highest=0;
cout<< "\n number of grade?";
cin>> num;
for(int i=1; i<=num;i++)
{
cout<< "\n the grade "<<i<< "?";
cin>> grade[i];
if (grade [i] > highest) highest = grade[i];
cout<<" highest grade " << highest;
if (grade [i] < lowest) lowest = grade[i];
cout<<" lowest grade " <<lowest;
}
cout<<"\n\n";
return 0;
}
答案 0 :(得分:3)
如果您想打印成绩,那么
for(int i=1; i<=num;i++)
{
cout << grade[i] << endl ;
}
但请注意,数组的索引编号为0到size.1。