Advertisement
Guest User

Untitled

a guest
Jan 16th, 2019
59
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C++ 0.32 KB | None | 0 0
  1. int main()
  2. {
  3. for(;;)
  4. {
  5.     cout<<endl;
  6.     cout<<"MENU GLOWNE"<<endl;
  7.     cout<<"----------------------"<<endl;
  8.     cout<<"0.Wyjscie z programu"<<endl;
  9.     cout<<"1.Wylicz podatek"<<endl;
  10.     cout<<"----------------------"<<endl;
  11.  
  12.     cout<<"Wybierz: ";
  13.     cin>>wybor;
  14.  
  15. if (wybor=0)
  16. {
  17.     exit(0);
  18.     break;
  19. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement