Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- #include <iostream>
- using namespace std;
- int main() {
- int test;
- cin >> test;
- if (test == 1) {
- cout << "Answer1" << endl;
- }
- if (test == 2) {
- cout << "Answer2" << endl;
- }
- if (test == 3) {
- cout << "Answer3" << endl;
- }
- if (test == 4) {
- cout << "Answer4" << endl;
- }
- }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement