#include<iostream>
#include<cstring>
using namespace std;
struct Car{
string brand;
int year;
};
int main() {
int n;
cout<<"How many cars do you wish to catalog?";
cin>>n;
Car *cars = new Car[n];
for(int i=0;i<n;i++){
cout<<"Car #"<<i+1<<":\n";
cout<<"Please enter the make:";
cin>>(cars[i].brand);
cout<<"Please enter the year made:";
cin>>(cars[i].year);
}
cout<<"Here is your collection:\n";
for(int i=0;i<n;i++){
cout<< cars[i].year << " " << cars[i].brand<<endl;
}
return 0;
}
觉得有用的话采纳一下哈