Task 2. Write an essay with support of the following questions 1) Have you ever been abroad? If no, where would you like to travel to and why?
2) Do you prefer to travel alone or in a group? Why?
3) Do you prefer to travel by train, bus, plane or ship?
4) Do you prefer traveling by car or by plane?
5) Have you ever been in a difficult situation while traveling?
6) What is the most interesting souvenir that you have ever bought on one of your holidays?
7) What's the most beautiful place you've ever been to?
using namespace std;
int main()
{ setlocale(0,"");
int a;
cout<<"введите значение погоды"<<endl;
cout<<"1-тепло"<<endl;
cout<<"2-жарко"<<endl;
cout<<"3-холодно"<<endl;
cout<<"4-колотун"<<endl;
cin>>a;
switch (a)
{
case 1: cout<<"вы можете одеть джинсы и футболку"<<endl; break;
case 2: cout<<"вы можете одеть шорты и майку "<<endl; break;
case 3: cout<<"вы можете одеть штаны и толстовку "<<endl; break;
case 4: cout<<"вы можете одеть куртку и свитер с подштанниками и ватными штанми "<<endl;
break;
}
return 0;
}