GIÁO TRÌNH C++ - Trang 63

cout << "Enter title: ";

cin.getline (films[n].title,50);

cout << "Enter year: ";

cin.getline (buffer,50);

films[n].year = atoi (buffer);

}

cout << "\nYou have entered these movies:\n";

for (n=0; n<N_MOVIES; n++)

printmovie (films[n]);

return 0;

}

void printmovie (movies_t movie)

{

cout << movie.title;

cout << " (" << movie.year << ")\n";

}

Enter title: Alien

Enter year: 1979

Enter title: Blade Runner

Enter year: 1982

Enter title: Matrix

Enter year: 1999

Enter title: Rear Window

Enter year: 1954

Enter title: Taxi Driver

Enter year: 1975

You have entered these movies:

Alien (1979)

Blade Runner (1982)

Matrix (1999)

Liên Kết Chia Sẽ

** Đây là liên kết chia sẻ bới cộng đồng người dùng, chúng tôi không chịu trách nhiệm gì về nội dung của các thông tin này. Nếu có liên kết nào không phù hợp xin hãy báo cho admin.