Advertisement
adibahbab4108

C211009-ADIB

Oct 27th, 2021
76
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C++ 0.43 KB | None | 0 0
  1. #include<iostream>
  2. using namespace std;
  3. int main()
  4. {
  5.     int x;
  6.     cin>>x;
  7.     switch(x)
  8.     {
  9.     case 31:
  10.         cout<<"Chittagong";
  11.     case 81:
  12.         cout<<"Comilla";
  13.     case 2:
  14.         cout<<"Dhaka";
  15.     case 21:
  16.         cout<<"Rajshahi";
  17.     case 821:
  18.         cout<<"Sylhet";
  19.     case 521:
  20.         cout<<"Rangpur";
  21.     case 431:
  22.         cout<<"Barisal";
  23.     case 41:
  24.         cout<<"Khulna";
  25.     }
  26.  
  27. }
  28.  
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement