Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- #include <iostream>
- using namespace std;
- int main()
- {
- int n;
- cout << "1. PROLET" << endl;
- cout << "2. LETO" << endl;
- cout << "3. ESEN" << endl;
- cout << "Vnesi broj: ";
- cin >> n;
- switch (n) {
- case 1:
- cout << "Proletta e cvetna!" << endl;
- break;
- case 2:
- cout << "Letoto e zeshko!" << endl;
- break;
- case 3:
- cout << "Vo esen lisjata pagaat!" << endl;
- break;
- default:
- cout << "Vnesovte pogreshen broj!" << endl;
- }
- return 0;
- }
Advertisement
Add Comment
Please, Sign In to add comment