Analysis Program :
This program to find out the name of the day if we input the number. The process uses a switch case. We can input the numbers 1 through 7. If more than 7 or 0, then the program can not determine because already know right? Yes. Because there are only 7 days a week
Program :
[sourcecode language="css"]
#include <iostream.h>
class HARI {
public:
hari();
private:
int dino;
};
HARI::hari() {
cout<<"Masukan angka = ";
cin>>dino;
switch (dino) {
case 1:
cout<<"Hari ke : "<<dino<<" = Senin";break;
case 2:
cout<<"Hari ke : "<<dino<<" = Selasa";break;
case 3:
cout<<"Hari ke : "<<dino<<" = Rabu";break;
case 4:
cout<<"Hari ke : "<<dino<<" = Kamis";break;
case 5:
cout<<"Hari ke : "<<dino<<" = Jumat";break;
case 6:
cout<<"Hari ke : "<<dino<<" = Sabtu";break;
case 7:
cout<<"Hari ke : "<<dino<<" = Minggu";break;
default:
cout<<"Inputan eror, hanya 1 sampai 7 !!!";break;
}
}
main(){
HARI x;
x.hari();
}
[/sourcecode]
Monday, 18 April 2011
Subscribe to:
Post Comments (Atom)
Popular Posts
-
Nemu artikel bagus nih tentang agama. Gak ada salahnya saya posting, apalagi sebelum bulan ramadhan ini. TAKHALLI sesungguhnya berunt...
-
#include <cstdlib> #include <iostream> using namespace std; int floor(double x){ int a; ...
-
KATA PENGANTAR
Blog Archive
-
▼
2011
(95)
-
▼
Apr
(19)
- Menentukan Bilangan Prima
- Membuat Kalkulator sederhana
- Menghitung Deret 1-1/2+1/3-1/4+..+1/n
- Merubah Nilai ke Huruf
- Specifies the Day of the input numbers
- Algoritma dan Program menentukan Tahun Kabisat
- Algoritma dan Program Mencari luas Lingkaran dan v...
- Contoh Form dan Frame diHTML
- Mencari KPK c++
- Menentukan tahun Kabisat ( Jeliot )
- Menentukan FPB
- Program Sederhana menentukan angka habis di bagi 3...
- Menentukan Persamaan Kuadrat (Akar Imajiner)
- Membuat tabel dan hyperlink di HTML
- PILIHAN SULIT
- Mencari Luas Lingkaran dan Volum Bola ( versi Jeli...
- Netbook Saya
- Program C++ Mengisi BBM
- Kiat Berbisnis Dengan Keamanan Sistem Handal Melal...
-
▼
Apr
(19)
|
[close]
Powered by Blogger.
0 komentar:
Post a Comment