Dear My Blog

Sabtu, 04 Juni 2011

tugas cpp 10 array dimensi 1

#include<iostream.h>
#include<conio.h>
main()
{
int a[5]={10,15,20,25,30};
int b[5]={10,20};
int c[5]={15,0,30};
int j;

// Menampilkan nilai dari element array
cout<<endl;
for(j=0;j<5;j++)
{
cout<<"A ["<<j<<"] = "<<a[j]<<" , B ["<<j<<"] = "<<b[j]<<" , C ["<<j<<"] = "<<c[j]<<endl;
}
getch();
}





download aja. . . ! ! !

tugas cpp 10 array dimensi 2

//array dua dimensi
#include<iostream.h>
#include<conio.h>
main()
{
int matrix[3][3];
int i,j;

for(i=0;i<=2;i++)
{
for(j=0;j<=2;j++)
{
cout<<"Masukkan angka pada baris ke "<<i<<" kolom ke "<<j<<" : ";
cin>>matrix[i][j];
}
cout<<endl;
}
for(i=0;i<=2;i++)
{
for(j=0;j<=2;j++)
{
cout<<matrix[i][j]<<" ";
}
cout<<endl;
}
getch();
}




download aja dech . . . ? ?

Kamis, 26 Mei 2011

tugas 9 (3)

Buatlah program menghitung nilai akhir perkuliahan pada suatu mata kuliah , dengan ketentuan sebagai berikut :

                *Nilai Absensi * 10%

                * Nilai Tugas * 20%

                * Nilai U.T.S * 30%

                * Nilai U.A.S * 40%

Untuk proses penilaian dilakukan di dalam file header dan simpan nama file header tersebut hitnilai.h



Buatlah program header di bawah ini , kemudian  simpan dengan nama : hitnilai.h , pada folder kerja anda folder include


/*hitnilai.h

*/

#define awal {

#define akhir }

#define mulai() main()

#define cetak cout

#define tampil cprintf

#define masuk scanf

#define hapus() clrscr()

#define jika if

#define warna textcolor

#define tahan getche()


Simpan pada direktori C:\BC5\INCLUDE\..... , selanjutnya compile file hitnilai.h .


Buatlah program di bawah ini , kemudian gunakan header  yang sudah anda buat ..


/*-----------------------------------*/

/*program dengan file header sendiri*/

/*----------------------------------*/

#include <stdio.h>

#include <conio.h>

#include <iostream.h>

#include "hitnilai.h"

mulai()

awal

                int absen,tugas1,UTS1,UAS1,nilai,absensi,tugas2,UTS2,UAS2,nilaiakhir;

   hapus();

   warna(4);

   tampil("\nPROGRAM MENGHITUNG NILAI AKHIR MATA KULIAH\n");

   cout<<endl;

   cout<<"Masukkan Nilai Absensi : ";cin>>absen;

   cout<<"Masukkan Nilai Tugas : ";cin>>tugas1;

   cout<<"Masukkan Nilai U.T.S : ";cin>>UTS1;

   cout<<"Masukkan Nilai U.A.S : ";cin>>UAS1;

   absensi = absen*10/100;

   tugas2 = tugas1*20/100;

   UTS2 = UTS1*30/100;

   UAS2 = UAS1*40/100;

   nilaiakhir = absensi+tugas2+UTS2+UAS2;

   cout<<endl;

   cout<<"----------------------------------------------------";

   cout<<endl;

   cout<<"\tNilai Murni Absensi = "<<absen;

   cout<<" * 10% = "<<absensi<<endl;

   cout<<"\tNilai Murni Tugas = "<<tugas1;

   cout<<" * 20% = "<<tugas2<<endl;

   cout<<"\tNilai Murni U.T.S = "<<UTS1;

   cout<<" * 30% = "<<UTS2<<endl;

   cout<<"\tNilai Murni U.A.S = "<<UAS1;

   cout<<" * 40% = "<<UAS2;

   cout<<endl;

   cout<<"\tNilai Akhir yang diperoleh sebesar : "<<nilaiakhir;

   cout<<endl;

   cout<<"-----------------------------------------------------";

   tahan;

akhir

tugas 9 (2)

Buatlah program menghitung luas dan keliling lingkaran . Proses berada di dalam file header , nama file header yang diinginkan : lingkaran.h

Buatlah program header di bawah ini , kemudian  simpan dengan nama : lingkaran.h , pada folder kerja anda folder include


/*lingkaran.h

*/

#define awal {

#define akhir }

#define mulai() main()

#define cetak cout

#define tampil cprintf

#define masuk scanf

#define hapus() clrscr()

#define jika if

#define warna textcolor

#define tahan getche()


Simpan pada direktori C:\BC5\INCLUDE\..... , selanjutnya compile file lingkaran.h .


Buatlah program di bawah ini , kemudian gunakan header  yang sudah anda buat ..

/*-----------------------------------*/
/*program dengan file header sendiri*/
/*----------------------------------*/
#include <stdio.h>
#include <conio.h>
#include <iostream.h>
#include "lingkaran.h"
mulai()
awal
                int r,L,K;
   hapus();
   warna(5);
   tampil("\nPROGRAM MENGHITUNG LUAS DAN KELILING LINGKARAN\n");
   cout<<endl;
   cout<<"Masukkan Nilai Jari-jari = ";cin>>r;
                L = 3.14*r*r;
                K = 3.14*r;
   cout<<endl;
   cout<<"-----------------------------------------"<<endl;
   cout<<endl;
   cout<<"\tLuas Lingkaran : "<<L<<endl;
   cout<<"\tKeliling Lingkaran : "<<K<<endl;
   cout<<endl;
   cout<<"-----------------------------------------";
   tahan;
akhir




Kamis, 19 Mei 2011

Tugas cpp 8

#include <iostream.h>
#include <stdio.h>
#include <conio.h>
#include <iomanip.h>

main()
{
char namap[50], namak[50], tgl[50], lanjut, ulangi;
char *namab[9];
long hasat[9], jumhar[9], totbar[9];
long bayar, kembali;
int jumbel[9], kode[9] = {1,2,3,4,5,6,7,8,9};
int x, y, z = 0;
clrscr();
cout<<"\n\n\t\tNama Kasir = ";gets(namak);
cout<<"\n\n\t\tTanggal Login [dd/mm/yyyy] = ";gets(tgl);
cout<<"\n\n\t\tKasir saat ini "<<namak;
cout<<"\n\n\n\t\tPress Anykey To Countinue . . .";
lanjut = getche();
if(lanjut == 'Q')
    goto program;
else
    goto program;
program:
clrscr();
cout<<"\n\t\tMasukan Nama Pembeli = ";gets(namap);
cout<<"\t\tJumlah Data = ";cin>>y;
totbar[y] = 0;
    for (x = 1; x <= y; x++)
       {
      cout<<"\n\t\t----------------------";
       cout<<"\n\t\tData Ke-"<<x;
      cout<<"\n\n\t\tInput Kode Barang = ";cin>>kode[x];
          if(kode[x] == 1)
             {
            namab[x] = "Buku";
            hasat[x] = 3500;
            }
         else if (kode[x] == 2)
            {
            namab[x] = "Pensil";
             hasat[x] = 2000;
            }
         else if (kode[x] == 3)
             {
            namab[x] = "Pulpen";
            hasat[x] = 2500;
            }
         else if (kode[x] == 4)
             {
            namab[x] = "Penggaris";
            hasat[x] = 2500;
            }
         else if (kode[x] == 5)
             {
            namab[x] = "Serutan";
            hasat[x] = 2000;
            }
         else if (kode[x] == 6)
             {
            namab[x] = "Penghapus";
            hasat[x] = 2000;
            }
            else if (kode[x] == 7)
             {
            namab[x] = "Tipe-x";
            hasat[x] = 4000;
            }
            else if (kode[x] == 8)
             {
            namab[x] = "Spidol";
            hasat[x] = 5000;
            }
            else if (kode[x] == 9)
            {
            namab[x] = "Stabilo";
             hasat[x] = 3000;
            }
         else if (kode[x] < 1 || kode[x] > 9)
             {
            clrscr();
             cout<<"\n\t\tKode yang ada Masukan Salah.\n";
            cout<<"\n\t\tPress Anykey to Continue . . .";
            ulangi = getche();
                if (ulangi == 'Q')
                    goto program;
               else
                  goto program;
            }
      cout<<"\t\tAnda Memilih = "<<namab[x];
      cout<<"\n\t\tDengan Harga Satuan = "<<hasat[x]<<endl;
      cout<<"\t\tInput Jumlah Beli = ";cin>>jumbel[x];
      jumhar[x] = hasat[x] * jumbel[x];
      totbar[y] = totbar[y] + hasat[x] * jumbel[x];
      }
cout<<"\n\t\tAda Kesalahan? [Y/T] ";
ulangi = getche();
    if (ulangi == 'Y' || ulangi == 'y')
      goto program;
bill:
clrscr();
cout<<"\nKasir = "<<namak;
cout<<setiosflags(ios::right)<<setw(55)<<"No faktur : FN-00"<<z<<endl;
cout<<"Pembeli = "<<namap;
cout<<setiosflags(ios::right)<<setw(46)<<"Tanggal = "<<tgl<<endl;
cout<<"--------------------------------------------------------------------------------";
cout<<" No         Nama              Harga             Qty          Jumlah   \n";
cout<<"Unit       Barang            Satuan                               Harga    \n";
cout<<"--------------------------------------------------------------------------------";
   for(x = 1; x <= y; x++)
       {
      cout<<setiosflags(ios::left)<<setw(11)<<x;
      cout<<setiosflags(ios::left)<<setw(19)<<namab[x];
      cout<<setiosflags(ios::left)<<setw(19)<<hasat[x];
        cout<<setiosflags(ios::left)<<setw(17)<<jumbel[x];
        cout<<setiosflags(ios::left)<<setw(10)<<jumhar[x]<<endl;
      }
cout<<"--------------------------------------------------------------------------------\n";
cout<<setiosflags(ios::right)<<setw(66)<<"Total Bayar = "<<totbar[y]<<endl;
cout<<setiosflags(ios::right)<<setw(66)<<"Uang Bayar  = ";cin>>bayar;
    if(bayar >= totbar[y])
        kembali = bayar - totbar[y];
   else
       goto bill;
cout<<setiosflags(ios::right)<<setw(66)<<"Kembalian   = "<<kembali<<endl;
cout<<"\n\n--------------------------------------------------------------------------------";
cout<<"\n\t\t\t\tTERIMA KASIH";
cout<<"\n--------------------------------------------------------------------------------";
cout<<"\n\nAnda Ingin Input Lagi? [Y/T] ";
ulangi = getche();
    if (ulangi == 'Y' || ulangi == 'y')
       {
      z++;
       goto program;
      }
   else
       goto akhir;
akhir:
getch();
}




download aja di sini?

Sabtu, 23 April 2011

tugas cpp 7


#include <iostream.h>
#include <conio.h>
#include <stdio.h>

main()
{
char nama[50];
int harga,totpem;
cout<<"\t\tTICKET KONSER AVENGED SEVENFOLD"<<endl;
cout<<"==============================="<<endl;
cout<<"Nama = ";gets(nama);
cout<<"Harga Ticket = ";cin>>harga;

                                    totpem = harga;
         if(totpem>=3500000)
         {

                                    cout<<"Jenis kursi= Merah"<<endl;
         cout<<"Type kursi= VVIP";
         }
         else
         if(totpem>=2500000)
         {
         cout<<"Jenis kursi= Hijau"<<endl;
         cout<<"Type kursi= VIP";
         }
         else
         if(totpem>=1500000)
         {
         cout<<"Jenis kursi= Biru"<<endl;
         cout<<"Type kursi= Biasa";
         }
         cout<<endl;
         cout<<endl;
         cout<<"Terima Kasih Anda Telah Membeli Tiket Ini."<<endl;
         cout<<"Selamat Menonton Acara Yang Diselenggarakan pada :"<<endl;
         cout<<"Hari Sabtu Tanggal 10 July 2011";
         getch();
         }


tugas cpp 6

#include <iostream.h>
#include <conio.h>
#include <stdio.h>
main()
{
char nama[50],jurusan[20],nim[8];
int nilai1,nilai2,nilai3,nilai4,nilai5;
cout<<"\tPROGRAM NILAI KIMIA"<<endl;
cout<<"==========================="<<endl;
cout<<"NIM            = ";cin>>nim;
cout<<"Nama            = ";gets(nama);
cout<<"nilai absen        =";cin>>nilai1;
cout<<"nilai tugas        =";cin>>nilai2;
cout<<"nilai ulangan        =";cin>>nilai3;
cout<<"nilai praktek    =";cin>>nilai4;

nilai5= (nilai1+nilai2+nilai3+nilai4)/4;
                  if(nilai5>90)
                  {
                  cout<<"nilai akhir        ="<<nilai5<<endl;
                  cout<<"GRADE            =A\n";
                  cout<<"keterangan        =sangat baik";
                  }
                  else
                  if(nilai5>80)
                  {
                  cout<<"nilai akhir        ="<<nilai5<<endl;
                  cout<<"GRADE             =B\n";
                  cout<<"keterangan            =baik";
                  }
                  else
                  if(nilai5>70)
                  {
                  cout<<"nilai akhir         ="    <<nilai5<<endl;
                  cout<<"GRADE                =C\n";
                  cout<<"keterangan              =cukup";
                  }
                  else
                  {
                  cout<<"Nilai akhir    ="<<nilai5<<endl;
                  cout<<"GRADE    =D\n";
                  cout<<"keterangan    =kurang";
                  }
                  getch();
                  }


download aja