Advertisement
Guest User

Untitled

a guest
Nov 20th, 2017
86
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.43 KB | None | 0 0
  1. for (int i = 0; i < 41; ++i){
  2. cout << "-";
  3. }
  4. cout << "\n" << "| Menu Items |";
  5. cout << "\n" << "| |";
  6. cout << "\n" << "| 1. For Loop (Fixed Loop) |";
  7. cout << "\n" << "| 2. While (Pre-Check) |";
  8. cout << "\n" << "| 3. Do Loop (Post-Check) |";
  9. cout << "\n" << "| |";
  10. cout << "\n" << "| 0. Exit Program |";
  11. cout << "\n" << "| |" << endl;
  12. for (int i = 0; i < 41; ++i){
  13. cout << "-";
  14. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement