menu bar

Saturday 9 April 2016

program yang menampilkan pilihan-pilihan menu dari sebuah restoran atau cafe.


dalam c++

#include <iostream>

using namespace std;
/* run this program using the console pauser or add your own getch, system("pause") or input loop */

int main(int argc, char** argv) {

cout<<" _____ AL-Pro Resto & Cafe _____ "<<endl;
cout<<" =============================== "<<endl<<endl;
cout<<"\t  Daftar Menu"<<endl;
cout<<" +++++++++++++++++++++++++++++++ "<<endl<<endl;
cout<<"Makanan "<<endl;
cout<<"________"<<endl;
cout<<"1. Tuna Bakar Madu"<<endl;
cout<<"2. Kepiting Kari Spesial"<<endl;
cout<<"3. Udang Asam-Manis"<<endl;
cout<<"4. Cumi Gorenng Tepong"<<endl;
cout<<"5. Pindang Kepala Ikan"<<endl;
cout<<endl;
cout<<endl;
cout<<"Minuman"<<endl;
cout<<"_______"<<endl;
cout<<"1. Wedang Ronde"<<endl;
cout<<"2. Es Dawet"<<endl;
cout<<"3. Es Campur"<<endl;
cout<<"4. Es Kelapa Muda"<<endl;
cout<<"5. Wedang Uwuh"<<endl;

return 0;
}






No comments:

Post a Comment