我应该编写一个程序来阅读并填充一个包含5个学生ID和他们成绩的数组,然后用学生的ID打印平均,最低和最高等级,例如: 学生1:111 56 学生2:222 98 学生3:333 90 学生4:444 68 学生5:555 88 平均:80 排名#1:222 98 排名#5:111 56 我的程序给了我搞砸的值(平均值为328.4,排名#1:444 555,排名#5:555 88)以及调试错误(运行时检查失败#2 - 堆栈变量' a& #39;腐败者),这里是
#include <iostream>
using namespace std;
void avg(double a[4][1]);
void minMax(double a[4][1]);
void main () {
double a[4][1];
cout << "Enter 5 students' IDs and marks:\n";
int studentNum = 1;
for (int r=0; r<5; r++) {
cout << "Student" << studentNum << ": ";
studentNum++;
for (int c=0; c<2; c++)
cin >> a[r][c]; }
avg(a);
minMax(a); }
void avg(double a[4][1]){
double sum=0.0;
for (int r=0; r<5; r++) {
for (int c=1; c<2; c++) // does not include the ID column
sum = sum + a[r][c]; }
double avg = sum/5; // number of students = 5
cout << "Average: " << avg << endl; }
void minMax (double a[4][1]) {
double min = a[0][1];
double max = a[0][1];
int minID = a[0][0];
int maxID = a[0][0];
for (int r=0; r<5; r++) {
for (int c=1; c<2; c++) {
if (a[r][c] < min){
min = a[r][c];
minID = a[r][0]; }
if (a[r][c] > max){
max = a[r][c];
maxID = a[r][0]; } } }
cout << "Rank#1: " << maxID << " " << max << endl;
cout << "Rank#5: " << minID << " " << min << endl; }
非常感谢任何帮助,非常感谢你!
答案 0 :(得分:2)
错误是:
double a[4][1];
应该是:
double a[5][2];