ahmed0saber

Go to in C++

Nov 5th, 2020
58
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C++ 0.17 KB | None | 0 0
  1. #include <iostream>
  2. using namespace std;
  3. int main()
  4. {
  5.     goto one;
  6.     two:
  7.     cout<<"Saber";
  8.     goto three;
  9.     one:
  10.     cout<<"Ahmed";
  11.     goto two;
  12.     three:
  13.     cout<<"Fathy";
  14. }
Advertisement
Add Comment
Please, Sign In to add comment