Advertisement
adibahbab4108

ADIB

Oct 12th, 2021
93
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C++ 1.01 KB | None | 0 0
  1. #include <bits/stdc++.h>
  2. using namespace std;
  3. #define ll long long int
  4. #define optimize()            \
  5.  
  6. int main()
  7. {
  8.     ll i=1;
  9.     while(1)
  10.     {
  11.         string s;
  12.         cin >> s;
  13.  
  14.         if(s=="HELLO")
  15.         {
  16.             cout << "Case " << i << ": " << "ENGLSH" << endl;
  17.             i++;
  18.         }
  19.         else if(s=="HOLA")
  20.         {
  21.             cout << "Case " << i << ": " << "SPANISH" << endl;
  22.             i++;
  23.         }
  24.         else if(s=="HALLO")
  25.         {
  26.             cout << "Case " << i << ": " << "GERMAN" << endl;
  27.             i++;
  28.         }
  29.         else if(s=="BONJOUR")
  30.         {
  31.             cout << "Case " << i << ": " << "FRENCH" << endl;
  32.             i++;
  33.         }
  34.         else if(s=="CIAO")
  35.         {
  36.             cout << "Case " << i << ": " << "ITALIAN" << endl;
  37.             i++;
  38.         }
  39.         else if(s=="ZDRAVSTVUJTE")
  40.         {
  41.             cout << "Case " << i << ": " << "RUSSIAN" << endl;
  42.             i++;
  43.         }
  44.         else if(s=="#") break;
  45.     }
  46. }
  47.  
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement