#include <iostream>
using namespace std;
struct book{
string name;
string author;
int pages;
float price;
};
int main(){
book books[2];
for(int i = 0; i < 2; i++){
cout << "Book " << i+1 << ": ";
getline(cin, books[i].name);
getline(cin, books[i].author);
cin >> books[i].pages;
cin >> books[i].price;
cin.ignore();
}
for(int i = 0; i < 2; i++){
cout << "Book " << i+1 << ": " << endl;
cout << "Name: " << books[i].name << endl;
cout << "Author: " << books[i].author << endl;
cout << "Number of pages: " << books[i].pages << endl;
cout << "Price: " << books[i].price << endl;
}
}
struct Car
{
string name;
}
Car * car = nullptr;
int count = 100;
car = new Car[count];
for (int i = 0; i < count; i++)
{
car[i].name = "car" + i;
}
Customer::Customer(int id, string input_name): uid(id), name(input_name) {}
Customer customerRecords[2];
customerRecords[0] = Customer(25, "Bob Jones");
custoemrRecords[1] = Customer(26, "Jim Smith");
//add answer