#include <iostream>
#include <string>
using namespace std;
struct car
{
string make;
int year;
};
int main()
{
int n;
cin >> n;
car * pt = new car[n];
for (int i=0; i<n; i++)
{
getline(cin, pt[i].make);
cin >> pt[i].year;
}
for (int i=0; i<n; i++)
cout << pt[i].year << ' ' << pt[i].make << endl;
return 0;
}
当我键入输入时,我只能键入一个数字和一个字符串。然后程序显示一些零。它阻止我输入更多输入。谁能向我解释发生了什么以及如何在 C++ 中解决这个问题?谢谢!