program membuat lirik lagu c++,( kasus 8 bab 1 diktat alpro)
#include <iostream>
#include<conio.h>
#include<fstream>
/* run this program using the console pauser or add your own getch, system("pause") or input loop */
using namespace std;
int main(int argc, char** argv) {
int a,b ;
int input ;
cout<<"LIRIK LAGU\n";
cout<<"-----------------------------\n";
cout<<"tugas diktat ALPRO\n";
cout<<"-----------------------------\n";;
cout<<"Lirik lagu\n";
cout<<"-----------------------------\n";
cout<<"<1> Kita adalah sepasang sepatu \n";
cout<<"<2> Selalu bersama tak bisa bersatu\n";
cout<<"<3> kita mati bagai tak berjiwa\n";
cout<<"<4>Bergerak karena kakui manusia\n";
cout<<"=============================\n";
while (input <6){
cout<<"Tampilkan lirik lagu baris ke <1> <2> <3> <4> ?" ;
cout<<"-----------------------------\n";
cin>>input;
cout<<"ANDA MEMILIH : \n";
cout<<"-----------------------------\n";
if (input==1){
cout<<"\tNomor :satu\n";
cout<<"\tKita adalah sepasang sepatu\n";
cout<<"=============================\n";
}
else
{
if(input==2)
{
cout<<"\tNomor :dua\n";
cout<<"\tSelalu bersama tak bisa bersatu\n";
cout<<"=============================\n";
}
else
if(input==3)
{
cout<<"\tNomor :tiga\n";
cout<<"\tKita mati bagai tak berjiwa\n";
cout<<"=============================\n";
}
else
if(input==4)
{
cout<<"\tNomor :empat\n";
cout<<"\tBergerak karena kakui manusia\n";
cout<<"=============================\n";
}
else
cout<<"anda salah memasukan";
}
}
return 0;
}
output :
program membuat lirik lagu c++
Subscribe to:
Post Comments (Atom)
Popular Posts
-
konversi jam ke detik C++ (kasus 5 bab 3 diktat alpro) #include <iostream> /* run this program using the console pauser or add you...
-
Fungsi rekursif C++ pengertian fungsi rekursif Fungsi rekursif adalah function yang memanggil dirinya sendiri secara langsung maupun...
-
Konversi Detik ke jam, menit, Detik C++ (kasus 4 bab 3 diktat alpro) #include <iostream> using namespace std; int main(){ int s,j...
-
menghitung selisih waktu C++ (kasus 6 bab 3 diktat alpro) #include <iostream> #include <conio.h> using namespace std; //me...
-
Fungsi dan Parameter Halo guys , gimana kabar nya pada kesempatan kali ini kita akan belajar tentang fungsi dan parameter pada c++. Ini m...
EmoticonEmoticon