PROGRAM C++ CATATAN

 #include<conio.h>

#include<stdio.h>

#include<iostream>

#include<windows.h>


using namespace std;


int main()

{

int a;

system("color A");

A:

system("cls");

cout<<" "<<endl;

cout<<" SILAHKAN PILIH PROGRAM DIBAWAH INI "<<endl;

cout<<" "<<endl;

cout<<" 1. Catatanku "<<endl;

cout<<" 2. Dataku "<<endl;

cout<<" 3. exit "<<endl;

cout<<" "<<endl;

cout<<" Masukan Pilihan anda : ";

cin>>a;

cout<<" "<<endl;

if(a==1)

{

system("cls");

cout<<" Ini adalah catatan pertamaku latihan C++ "<<endl;

cout<<" dengan menggunakan clear screen "<<endl;

getch();

goto A;

}

else if(a==2)

{

system("cls");

cout<<" data lengkapku ada diblogku"<<endl;

getch();

goto A;

}

else if(a==3)

{

system("exit");

}

else

{

cout<<" yang anda masukan salah "<<endl;

cout<<" "<<endl;

getch();

goto A;

}

getch();

return 0;

}

Subscribe to receive free email updates:

0 Response to "PROGRAM C++ CATATAN"

Post a Comment