「五毛钱 」 2021-11-04 12:27 采纳率: 100%
浏览 33
已结题

不会做,救救孩子吧……

img


各位大哥救救孩子,第五题怎么做

  • 写回答

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;
    }
    


     觉得有用的话采纳一下哈

    本回答被题主选为最佳回答 , 对您是否有帮助呢?
    评论

报告相同问题?

问题事件

  • 系统已结题 11月12日
  • 已采纳回答 11月4日
  • 创建了问题 11月4日