Problem1342--cpp-5-7 编写程序,使用new创建动态数组

1342: cpp-5-7 编写程序,使用new创建动态数组

Time Limit: 1 Sec  Memory Limit: 128 MB
Submit: 64  Solved: 26
[Submit] [Status] [Web Board] [Creator:]

Description

设计一个名为car的结构,用它存储下述有关汽车的信息:生产商(存储在字符数组或string对象中的字符串)、生产年份(整数)。
编写一个程序,向用户询问有多少辆汽车。随后,程序使用new来创建一个由相应数量的car结构组成的动态数组。接下来,程序提示用户输入每
辆车的生产商(可能由多个单词组成)和年份信息。请注意,这需要特别小心,因为它将交替读取数值和字符串(参见第4章)。
最后,程序将显示每个结构的内容。该程序的运行情况如下:
How many cars do you wish to catalog? 2
Car #1:
Please enter the make: Hudson Hornet
Please enter the year made: 1952
Car #2:
Please enter the make: Kaiser
Please enter the year made: 1951
Here is your collection:
1952 Hudson Hornet
1951 Kaiser
先输入个数为2,然后输入每个car的信息,最后输出信息。



Input

2
Hudson Hornet
1952
Kaiser
1951

Output

1952 Hudson Hornet
1951 Kaiser

Sample Input

2
Hudson Hornet
1952
Kaiser
1951

Sample Output

1952 Hudson Hornet
1951 Kaiser

Source/Category

 

[Submit] [Status]