Monday, March 05, 2012
Menu Sederhana C++
membuat sintak menu sederhana pada bahasa pemograman C++
// Created by Qye
// http://qye08.blogspot.com/
#include <iostream.h>
#include <conio.h>
void main()
{
int pilihan;
while (!((pilihan == 1) || (pilihan == 2) || (pilihan == 3)))
{
clrscr();
cout<<"============ MENU =============="<<endl;
cout<<"1. Sorting"<<endl;
cout<<"2. Searching"<<endl;
cout<<"3. Exit"<<endl;
cout<<"================================"<<endl<<endl;
cout<<"Masukkan pilihan anda : ";
cin>>pilihan;
}
clrscr();
if(pilihan == 1)
{
//panggil fungsi yang diinginkan
cout<<"proses...";
}
else if(pilihan == 2)
{
//panggil fungsi yang diinginkan
cout<<"proses...";
}
else
{
//program selesai
cout<<"Tekan enter sekali lagi untuk keluar..";
}
getch();
}
by : http://qye08.blogspot.com/
Tags :
C++
catatan kuliah ku
Entri Populer
- Vidio musisi yang keren dan unix
- Qye Virust Ellite All Attack on System and All File
- Trik Download Di Mediafire
- Program Java - Entri Data Pasien - java netbeen jdk 651
- Update Script Download Di Rangkiang Distro Linux
- Joint Virus Setup.exe AND Autorun.inf
- pasang artikel tulisan tangan mu sendiri
- Link Sahabat The Fox Rider
- Daftar Isi The Fox Rider
- My Dream My Lovelly
0 komentar
Post a Comment