Untitled
unknown
plain_text
3 years ago
601 B
8
Indexable
#include <iostream>
using namespace std;
int main()
{
int n;
cin >> n;
switch (n)
{
case 1: {
cout << "1-Rusish" << " \n" << "2-Go to clad";
break; }
case 2: {
cout << "1-Math" << " \n" << "2-Rusish" << "\n" << "3-Go to clad";
break; }
case 3: {
cout << "1-Go to clad" << " \n" << "2-Math" << "\n" << "3-Go to clad";
break; }
case 4: {
cout << "1-Rusish" << " \n" << "2-Rusish" << "\n" << "3-Go to clad";
break; }
case 5: {
cout << "1-Math" << " \n" << "2-Math" << "\n" << "3-Math" << "\n" << "4-Go to clad";
break; }
default:
break;
}
}
Editor is loading...