This is default featured post 1 title
Go to Blogger edit html and find these sentences.Now replace these sentences with your own descriptions.This theme is Bloggerized by Lasantha Bandara - Premiumbloggertemplates.com.
This is default featured post 2 title
Go to Blogger edit html and find these sentences.Now replace these sentences with your own descriptions.This theme is Bloggerized by Lasantha Bandara - Premiumbloggertemplates.com.
This is default featured post 3 title
Go to Blogger edit html and find these sentences.Now replace these sentences with your own descriptions.This theme is Bloggerized by Lasantha Bandara - Premiumbloggertemplates.com.
This is default featured post 4 title
Go to Blogger edit html and find these sentences.Now replace these sentences with your own descriptions.This theme is Bloggerized by Lasantha Bandara - Premiumbloggertemplates.com.
This is default featured post 5 title
Go to Blogger edit html and find these sentences.Now replace these sentences with your own descriptions.This theme is Bloggerized by Lasantha Bandara - Premiumbloggertemplates.com.
April 24, 2011
Mempercepat Browsing
April 23, 2011
tugas 6
#include<stdio.h>
class jual
{
public:
char kode_hp[5],*merk_hp;
int jml_beli;
float harga,total;
};
main()
{
char nm_kasir[25],nm_pembeli[25];
int i,j;
float totbay;
jual hp[10];
clrscr();
cout<<" CEMPEDAK CELL "<<endl;
cout<<" Jl. Cempedak no.378 "<<endl;
cout<<" Telp. (021) 7901074 "<<endl;
cout<<"-------------------------------------------------------------"<<endl;
cout<<"Nama kasir : ";gets(nm_kasir);
cout<<"Nama pembeli : ";gets(nm_pembeli);
cout<<"Masukkan jumlah data : ";cin>>j;
cout<<endl;
for(i=1;i<=j;i++)
{
cout<<"Data ke- "<<i<<endl;
cout<<"Kode Hp [NK66,SE80,NK73,SM73] :";cin>>hp[i].kode_hp;
if(strcmpi(hp[i].kode_hp,"NK66")==0)
{hp[i].merk_hp="Nokia 6600";
hp[i].harga=1200000;}
else
if(strcmpi(hp[i].kode_hp,"SE80")==0)
{hp[i].merk_hp="Sony Ericson W80";
hp[i].harga=1500000;}
else
if(strcmpi(hp[i].kode_hp,"NK73")==0)
{hp[i].merk_hp="Nokia N73";
hp[i].harga=1700000;}
else
if(strcmpi(hp[i].kode_hp,"SM73")==0)
{hp[i].merk_hp="Siemens C73";
hp[i].harga=1700000;}
cout<<"Merk Hp :"<<hp[i].merk_hp<<endl;
cout<<"Harga :Rp."<<setprecision(12)<<hp[i].harga<<endl;
cout<<"Jumlah beli :";cin>>hp[i].jml_beli;
hp[i].total=hp[i].jml_beli*hp[i].harga;
cout<<endl;
}
clrscr();
cout<<" COUNTER HANDPHONE CEMPEDAK CELL "<<endl;
cout<<" Laporan Penjualan Handphone "<<endl;
cout<<" Jl. Cempedak no. 378 Telp.(021)7901074 "<<endl;
cout<<"-------------------------------------------------------------"<<endl;
cout<<"No. Kode Merk Harga Jumlah Total "<<endl;
cout<<" HP HP Beli "<<endl;
cout<<"-------------------------------------------------------------"<<endl;
for(i=1;i<=j;i++)
{
cout<<setiosflags(ios::left)<<setw(5)<<i;
cout<<setiosflags(ios::left)<<setw(9)<<hp[i].kode_hp;
cout<<setiosflags(ios::left)<<setw(10)<<hp[i].merk_hp;
cout<<setiosflags(ios::right)<<setw(10)<<hp[i].harga;
cout<<setiosflags(ios::right)<<setw(10)<<hp[i].jml_beli;
cout<<setiosflags(ios::right)<<setw(10)<<hp[i].total<<endl;
totbay=totbay+hp[i].total;
}
cout<<"-------------------------------------------------------------"<<endl;
cout<<"Total Bayar :"<<setprecision(12)<<totbay<<endl;
getch();
}
akhirnya kelar juga klo ada yang mw coba di RUN,silahkan dulu download kerjaan di atas
tugas c++ 5 array
#include <stdio.h>
#include <conio.h>
#include <iomanip.h>
#include <string.h>
//Nama: Alfan//Kelas: 12.1a.03//NIM: 12111305//No. Absen: 45//
main()
{
int x ,a ,ulangi;
char jenis[6] = {'D','d','P','p','S','s'} ,*ket[6];
long bapot[6], jumhar[6] = {0}, hasat[6] = {2500 ,2000 ,1500};
long jumbar[6]= {0}, pajak[6], totba[6];
pesan:
clrscr();
cout<<"\tGEROBAK FRIED CHICKEN\n";
cout<<"\t---------------------\n";
cout<<"\t Kode Jenis Harga\n";
cout<<"\t---------------------\n";
cout<<"\t [D] Dada Rp. 2500\n";
cout<<"\t [P] Paha Rp. 2000\n";
cout<<"\t [S] Sayap Rp. 1500\n\n";
cout<<"\t---------------------\n\n";
cout<<"\tBanyak Jenis : ";cin>>x;
jumbar[x] = 0;
if (x <= 0)
{
cout<<"\n\t\tBanyak Jenis Tidak Boleh Null";
goto akhir;
}
else
{
for(a = 1 ; a <= x; ++a)
{
cout<<"\tJenis Ke - "<<a;
cout<<"\n\tJenis Potong [D/P/S] : ";cin>>jenis[a];
cout<<"\tBanyak Potongan : ";cin>>bapot[a];
cout<<"\t------------------------\n";
if (jenis[a] == 'D' || jenis[a] == 'd')
{
ket[a] = "Dada ";
hasat[a] = 2500;
}
else if (jenis[a] == 'P' || jenis[a] == 'p')
{
ket[a] = "Paha ";
hasat[a] = 2000;
}
else if (jenis[a] == 'S' || jenis[a] == 's')
{
ket[a] = "Sayap";
hasat[a] = 1500;
}
else
{
cout<<"\nAnda Salah Masukan Kode Jenis Potongan.";
hasat[a] = 0;
}
jumhar[a] = hasat[a] * bapot[a];
jumbar [x] = jumbar[x] + hasat[a] * bapot[a];
if (jumbar[x] == 0)
{
pajak[x] = 0;
totba[x] = 0;
}
else
{
pajak[x] = jumbar[x] * 0.1;
totba[x] = jumbar[x] - pajak[x];
}
}
}
cotong | Satuan | Beli | Harga\n";
cout<<"================================================\n";
for (a = 1; a <= x; ++a)
{
cout<<" "<<a<<" | "<<ket[a]<<" | "<<hasat[a];
cout<<" | "<<bapot[a]<<" | Rp. "<<jumhar[a]<<endl;
}
cout<<"------------------------------------------------\n";
cout<<"\t\t\tJumlah Bayar Rp. "<<jumbar[x]<<endl;
cout<<"\t\t\tPajak 10% Rp. "<<pajak[x]<<endl;
cout<<"\t\t\tTotal Bayar Rp. "<<totba[x];
cout<<"\n\n\tAnda Ingin Memesan Lagi? [Y/T] = ";
ulangi = getche();
if (ulangi == 'Y' || ulangi == 'y')
goto pesan;
else
cout<<"\n\n\t\tTerima Kasih";
akhir:
getch();
}
ahhhhh puyeng lah . . yang mw ambil diri disini
April 22, 2011
tugas 1 C++
#include <conio.h>
#include <stdio.h>
main()
{
char nama[50];
int keaktifan , tugas , ujian ,hasilkeaktifan , hasiltugas , hasilujian, hasil;
clrscr();
cout<<"\tPROGRAM NILAI AKHIR";
cout<<endl;
cout<<"^^^-------------------------------^^^"<<endl;
cout<<endl;
cout<<"\t\(^o^)/ siswa yang bernama: ";gets(nama);
cout<<"\t\(^o^)/ dengan nilai persentasi yang dihasilkan: \(^o^)/"<<endl;
cout<<endl;
cout<<"^^^-------------------------------^^^"<<endl;
cout<<"\tnilai keaktifan :";cin>>keaktifan;
cout<<"\tnilai tugas :";cin>>tugas;
cout<<"\tnilai ujian :";cin>>ujian;
hasilkeaktifan = keaktifan * 20/100;
hasiltugas = tugas * 30/100;
hasilujian = ujian * 50/100;
hasil = hasilkeaktifan + hasiltugas + hasilujian;
cout<<endl;
cout<<"^^^-------------------------------^^^"<<endl;
cout<<endl;
cout<<"\tnilai keaktifan*20% :"<<hasilkeaktifan<<endl;
cout<<"\tnilai tugas*30% :"<<hasiltugas<<endl;
cout<<"\tnilai ujian*50% :"<<hasilujian<<endl;
cout<<endl;
cout<<"^^^-------------------------------^^^"<<endl;
cout<<endl;
cout<<"\tjadi siswa yang bernama:"<<nama<<endl;
cout<<"\tmemperoleh nilai akhir sebesar :"<<hasil<<endl;
cout<<endl;
cout<<"^^^-------------------------------^^^"<<endl;
getch();
}
Alhamdulliah bisa di RUN cek aja c++
jangan lupa programnya juga y biar bisa di test bagi yang belum punya ni saya kasih free
tugas 2 C++(AND)
#include <conio.h>
#include <stdio.h>
main()
{
char nama[15], kelas[20], nim[10];
float A, B, C, K, L, M, D, E, F, G, H;
clrscr();
cout<<"\tBIODATA SAYA\n";
cout<<"NIM : " ;cin>>nim;
cout<<"Nama : " ;gets(nama);
cout<<"Kelas : " ;cin>>kelas;
cout<<endl;
cout<<"(^o^)/-----------------------(^o^)/"<<endl;
cout<<endl;
cout<<"Nilai A = ";cin>>A;
cout<<"Nilai B = ";cin>>B;
cout<<"Nilai C = ";cin>>C;
cout<<"Nilai K = ";cin>>K;
cout<<"Nilai L = ";cin>>L;
cout<<"Nilai M = ";cin>>M;
cout<<endl;
cout<<"(^o^)/-----------------------(^o^)/"<<endl;
//proses
D = (4+2>A&&B-2>3+2||B+2<=6+2);
E = K+5<M||M<L&&2*M-L>0;
F = L+5<M||C*K<L&&2*K-L>0;
G = A*4<=3*M+B;
H = K+10>A&&L-2>4*C;
cout<<endl;
cout<<"program ekspresi AND/OR"<<endl<<endl;
cout<<"hasil dari D = (4+2>A&&B-2>3+2||B+2<=6+2) adalah " <<D<<endl;
cout<<"hasil dari E = K+5<M||M<L&&2*M-L>0 adalah " <<E<<endl;
cout<<"hasil dari F = L+5<M||C*K<L&&2*K-L>0 adalah " <<F<<endl;
cout<<"hasil dari G = A*4<=3*M+B adalah " <<G<<endl;
cout<<"hasil dari H = K+10>A&&L-2>4*C adalah " <<H<<endl;
cout<<endl<<endl;
cout<<"(^o^)/-----------------------(^o^)/"<<endl;
cout<<endl;
getch();
}
Berhasil di RUN kalau mau coba mangga atuh
tugas 2 C++(NOT)
#include <conio.h>
#include <stdio.h>
main()
{
char nama[15], kelas[20], nim[10];
float A, B, C, K, L, M, D, E, F, G, H;
clrscr();
cout<<"\tBIODATA SAYA\n";
cout<<"NIM :" ;cin>>nim;
cout<<"Nama :" ;gets(nama);
cout<<"Kelas :" ;cin>>kelas;
cout<<endl;
cout<<"(^o^)/-----------------------(^o^)/"<<endl;
cout<<endl;
cout<<"\tNilai A =";cin>>A;
cout<<"\tNilai B =";cin>>B;
cout<<"\tNilai C =";cin>>C;
cout<<"\tNilai K =";cin>>K;
cout<<"\tNilai L =";cin>>L;
cout<<"\tNilai M =";cin>>M;
cout<<endl;
cout<<"(^o^)/-----------------------(^o^)/"<<endl;
//proses
D = !(4+2>A&&B-2>3+2||B+2<=6+2);
E = !(K+5<M||M<L&&2*M-L>0);
F = !(L+5<M||C*K<L&&2*K-L>0);
G = !(A*4<=3*M+B);
H = !(K+10>A&&L-2>4*C);
cout<<endl;
cout<<"\tprogram ekspresi NOT"<<endl<<endl;
cout<<"hasil dari D = (4+2>A&&B-2>3+2||B+2<=6+2) adalah" <<D<<endl;
cout<<"hasil dari E = K+5<M||M<L&&2*M-L>0 adalah" <<E<<endl;
cout<<"hasil dari F = L+5<M||C*K<L&&2*K-L>0 adalah" <<F<<endl;
cout<<"hasil dari G = A*4<=3*M+B adalah" <<G<<endl;
cout<<"hasil dari H = K+10>A&&L-2>4*C adalah" <<H<<endl;
cout<<endl<<endl;
cout<<"(^o^)/-----------------------(^o^)/"<<endl;
cout<<endl;
getch();
}
sudah si RUN dan berhasil,kalau mau coba klik disini
tugas 3 C++
#include <conio.h>
#include <stdio.h>
main()
{
char nama[50];
int nilai1,nilai2,nilai3,ratarata;
cout<<"\t\tPROGRAM HITUNG NILAI RATA-RATA"<<endl;
cout<<"(^o^)/---------------------------------------------------------(^o^)/"<<endl;
cout<<endl;
cout<<"Nama = ";gets(nama);
cout<<"nilai pertandingan I = " ;cin>>nilai1;
cout<<"nilai pertandingan II = " ;cin>>nilai2;
cout<<"nilai pertandingan III = " ;cin>>nilai3;
ratarata= (nilai1+nilai2+nilai3)/3;
cout<<endl;
cout<<"siswa yang bernama "<<nama;
cout<<endl;
cout<<"memperoleh nilai rata-rata " <<ratarata;
cout<<endl;
cout<<"dan menjadi juara ke-";
if(ratarata>80)
{
cout<<"I";
}
else
if(ratarata>75)
{
cout<<"II";
}
else
if(ratarata>65)
{
cout<<"III";
}
else
cout<<"TIDAK JUARA";
cout<<" dari hasil perlombaan yang diikutinya"<<endl;
getch();
}
**untuk ini sudah di run dan berhasil. . . .klo mw coba klik aje disni
April 21, 2011
tugas cpp 4
#include <conio.h>
#include <stdio.h>
main ()
{
char nama [50],pendidikan[7];
long gol,jamker,lembur1,lembur2, tunjab, tunpen, gapok=300000, total;
cout<<"\tPROGRAM HITUNG GAJI KARYAWAN";
cout<<"\n============================================";
cout<<"\n\nNama Karyawan = ";gets(nama);
cout<<"Golongan Jabatan [1/2/3] = ";cin>>gol;
cout<<"Pendidikan [ SMA/D1/D3/S1 ] = ";cin>>pendidikan;
cout<<"Jumlah jam kerja = ";cin>>jamker;
if(gol==1)
{tunjab=0.05*gapok;}
else
if(gol==2)
{tunjab=0.1*gapok;}
else
{tunjab=0.15*gapok;}
if(strcmp(pendidikan,"SMA")==0||strcmp(pendidikan,"sma")==0)
{tunpen=0.025*gapok;}
else
if(strcmp(pendidikan,"D1")==0||strcmp(pendidikan,"d1")==0)
{tunpen=0.05*gapok;}
else
if(strcmp(pendidikan,"D3")==0)
{tunpen=0.3*gapok;}
lembur1=jamker-8;
if(lembur1>0)
{lembur2=lembur1*3500;}
else
{lembur2=0;}
total=gapok+tunjab+tunpen+lembur2;
cout<<endl;
cout<<"Karyawan yang bernama = "<<nama<<endl;
cout<<"Honor yang diterima "<<endl;
cout<<" Tunjangan jabatan Rp."<<tunjab<<endl;
cout<<" Tunjangan pendidikan Rp."<<tunpen<<endl;
cout<<" Honor Lembur Rp."<<lembur2<<endl;
cout<<" Total gaji _______________+"<<endl;
cout<<" Rp."<<total<<endl;
getche();
}
sikat_dah