Combined two commit

master
L101Danzan 2024-03-01 14:10:16 +02:00
parent 0d6ceae52b
commit 856abc3bfe
1 changed files with 29 additions and 2 deletions

View File

@ -1,6 +1,22 @@
#include <iostream>
using namespace std;
string films[10] = { "Champagne redemption", "You are a 12th failure", "The Hellmother", "The light princes", "Elevators death wish", "Lover of a0s:Cumeback", "12 regular dudes and a stripper", "A path to the protein", "Ugly birth", "Pussybar" };
string dates[10] = { "Date: 15.03", "Date: 05.02", "Date: 20.02", "Date: 02.10", "Date: 1.03", "Date: 14.02", "Date: 12.02", "Date: 13.01", "Date: 12.06", "Date: 14.02" };
void printName() {
for (int i = 0; i < 10; i++) {
cout << i + 1 << ") " << films[i] << endl;
}
}
void printDate(int film) {
cout << dates[film - 1] << endl;
}
//-------------------------------------------------------------
string times[10] = { "Time: 00:00", "Time: 19:30", "Time: 23:00", "Time: 18:45", "Time: 22:05", "Time: 23:45", "Time: 00:30", "Time: 19:40", "Time: 21:00", "Time: 10:00" };
string annotation[10] = { "||Annotation|| Over the course of several years, two convicts form a friendship, seeking consolation and, eventually, redemption through basic compassion.", "||Annotation|| The real-life story of IPS Officer Manoj Kumar Sharma and IRS Officer Shraddha Joshi.", "||Annotation|| The aging patriarch of an organized crime dynasty transfers control of his clandestine empire to his reluctant son.", "||Annotation|| When the menace known as the Joker wreaks havoc and chaos on the people of Gotham, Batman must accept one of the greatest psychological and physical tests of his ability to fight injustice.", "||Annotation|| In German-occupied Poland during World War II, industrialist Oskar Schindler gradually becomes concerned for his Jewish workforce after witnessing their persecution by the Nazis.", "||Annotation|| Gandalf and Aragorn lead the World of Men against Sauron's army to draw his gaze from Frodo and Sam as they approach Mount Doom with the One Ring.", "||Annotation|| The jury in a New York City murder trial is frustrated by a single member whose skeptical caution forces them to more carefully consider the evidence before jumping to a hasty verdict.", "||Annotation|| The lives of two mob hitmen, a boxer, a gangster and his wife, and a pair of diner bandits intertwine in four tales of violence and redemption.", "||Annotation|| A thief who steals corporate secrets through the use of dream-sharing technology is given the inverse task of planting an idea into the mind of a C.E.O., but his tragic past may doom the project and his team to disaster.", "||Annotation|| An insomniac office worker and a devil-may-care soap maker form an underground fight club that evolves into much more." };
@ -13,9 +29,20 @@ void printAnnotation(int film) {
cout << annotation[film - 1] << endl;
}
//-------------------------------------------------------------
int main() {
int film;
int film = 1;
//-------------------------------------------------------------
printName();
cout << "Choose film: ";
printDate(film);
//-------------------------------------------------------------
printTime(film);
printAnnotation(film);