Advertisement
kagemaro

Untitled

Jan 5th, 2017
80
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C++ 0.62 KB | None | 0 0
  1. #include <cstdlib>
  2. #include <stdio.h>
  3. #include <conio.h>
  4. #include <iostream.h>
  5. #include <iomanip.h>
  6. main()
  7. {
  8.     cout<<setiosflags(ios::right)<<setw(10)<<"Grillicious"<<endl;
  9.     cout<<setiosflags(ios::right)<<setw(10)<<"Yummy Grills and More"<<endl;
  10.     cout<<setiosflags(ios::right)<<setw(10)<<"====================="<<endl;
  11.     cout<<"Welcome to Grillicious Yummy Grills and More"<<endl;
  12.     cout<<"Choose your menu to work: "<<endl;
  13.     cout<<"1.Input Menu"<<endl;
  14.     cout<<"2.Logout"<<endl;
  15.     cout<<"================================================"<<endl;
  16.     cout<<"Input here : "<<endl;
  17.  
  18.     getch();
  19. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement