您没有遇到运行时错误,因为您的数组存储的内容超出了应有的范围。可能是,当您输入名称时,它包含空格。这将使cin >> score;
只读第一个字符,将其余字符留在输入缓冲区中。
这是我运行您的代码的结果:
[wolf@Targaryen]:~$ r
Enter the name for score # 1 :Alex
Enter the score for score # 1 :100
Enter the name for score # 2 :Bob
Enter the score for score # 2 :99
Enter the name for score # 3 :Charlie
Enter the score for score # 3 :98
Enter the name for score # 4 :Douglas
Enter the score for score # 4 :97
Enter the name for score # 5 :Evin
Enter the score for score # 5 :96
100
99
98
97
96
[wolf@Targaryen]:~$
但是,您的代码确实存在问题。循环for ( int j=i; j<= i ;j++ )
只执行一次,但这不会导致任何错误。
您应该使用以下命令读取您的姓名输入:
getline(cin, name);
然后,您应该通过将留在其中的任何垃圾放入未使用的变量来清除输入缓冲区。
我认为您可以像这样更改代码:
#include <iostream>
#include <cstdio>
using namespace std;
int main()
{
const int num = 5;
string t[num], name;
int m[num], score;
for(int i=0; i < num; i++)
{
cout << "Enter the name for score # " << i+1 << " :";
getline(cin, name);
t[i] = name;
cout << "Enter the score for score # " << i+1 << " :";
cin >> score;
m[i] = score;
getline(cin, name); // This line just clear out the buffer. "name" used as a trash
}
for(int i=0; i < num; i++)
cout << t[i] << ": " << m[i] << endl;
}