Ayo Belajar C++ - Contoh Program C++ Pendaftaran Mahasiswa Baru
program pendaftaran mahasiswa baru dengan menggunakan aplikasi Borland C++, program ini adalah contoh ketika saya masih berkuliah di BSI Karawang pada awal semester satu.Semoga program ini dapat menjadi referensi anda.
LAngkah langkahnya :
1. Buka Aplikasi Borland C++
2. Pilih file > New > Text edit
3. Pastekan koding dibawah ini :
#include<stdio.h>
#include<conio.h>
#include<iostream.h>
main( )
{
char kode[3];
char waktu;
char jurusan[25];
long biaya,spp,total;
int gel;
cout<<" DAFTAR KULIAH"<<endl;
cout<<"======================="<<endl;
cout<<"INPUT KODE [KA/MI] :"; cin>>kode;
cout<<"PILIH WAKTU [P/M] :"; cin>>waktu;
cout<<"GELOMBANG [1/2/3] :"; cin>>gel;
//mencari jurusan
//kode=="KA"
if(strcmp(kode,"KA")==0)
strcpy(jurusan,"Komputerisasi Akuntansi");
else if(strcmp(kode,"MI")==0)
strcpy(jurusan,"Manajemen Informatika");
else
strcpy(jurusan,"kode salah");
//mencari biaya
if(waktu=='p'||waktu=='p')
biaya=1180000;
else if(waktu=='M'||waktu=='m')
biaya=1480000;
else
biaya=0;
//mencari spp
if (gel==1)
spp=1000000;
else if (gel==2)
spp=1300000;
else if (gel==3)
spp=1600000;
else
spp=0;
total=biaya+spp;
cout<<"JURUSAN :"<<jurusan<<endl;
cout<<"BIAYA KULIAH :"<<biaya<<endl;
cout<<"SPP :"<<spp<<endl;
cout<<"========================"<<endl;
cout<<"TOTAL BIAYA :"<<total<<endl;
cout<<"==Terima Kasih==";
getch();
}
#include<conio.h>
#include<iostream.h>
main( )
{
char kode[3];
char waktu;
char jurusan[25];
long biaya,spp,total;
int gel;
cout<<" DAFTAR KULIAH"<<endl;
cout<<"======================="<<endl;
cout<<"INPUT KODE [KA/MI] :"; cin>>kode;
cout<<"PILIH WAKTU [P/M] :"; cin>>waktu;
cout<<"GELOMBANG [1/2/3] :"; cin>>gel;
//mencari jurusan
//kode=="KA"
if(strcmp(kode,"KA")==0)
strcpy(jurusan,"Komputerisasi Akuntansi");
else if(strcmp(kode,"MI")==0)
strcpy(jurusan,"Manajemen Informatika");
else
strcpy(jurusan,"kode salah");
//mencari biaya
if(waktu=='p'||waktu=='p')
biaya=1180000;
else if(waktu=='M'||waktu=='m')
biaya=1480000;
else
biaya=0;
//mencari spp
if (gel==1)
spp=1000000;
else if (gel==2)
spp=1300000;
else if (gel==3)
spp=1600000;
else
spp=0;
total=biaya+spp;
cout<<"JURUSAN :"<<jurusan<<endl;
cout<<"BIAYA KULIAH :"<<biaya<<endl;
cout<<"SPP :"<<spp<<endl;
cout<<"========================"<<endl;
cout<<"TOTAL BIAYA :"<<total<<endl;
cout<<"==Terima Kasih==";
getch();
}
4. Running, Maka hasilnya seperti dibawah ini:
- Input kode jurusan KA (komputer akuntansi) atau MI (manajemen informatika), contoh saya pilih "MI" dan enter. Maka muncul "
- pilih waktu Pagi/Malam, saya pilih "M" untuk malam, dan Enter.
- Pilih Gelombang, misalnya pilih gelombang 1, maka ketik "1" dan Enter.
- Ini hasil akhirnya, Semoga membantu !!!
Belum ada Komentar untuk "Ayo Belajar C++ - Contoh Program C++ Pendaftaran Mahasiswa Baru"
Posting Komentar