各位大哥救救孩子,第五题怎么做
1条回答 默认 最新
- -Undefined_ 2021-11-04 12:51关注
#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; }
觉得有用的话采纳一下哈本回答被题主选为最佳回答 , 对您是否有帮助呢?解决 1无用