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.

Selasa, 24 Maret 2015

Program Menghitung Factorial

Berikut adalah program menghitum factorial menggunakan class  pada c++;


#include <iostream>
using namespace std;
/* run this program using the console pauser or add your own getch, system("pause") or input loop */

class faktorial{
private:
int bill;
int faktoria;
public:
void input();
void output();
};

void faktorial::input(){
cout<<"masukan yang akan dihitung:";
cin>>bill;

}
void faktorial::output(){
faktoria = 1;
int c=bill;
cout<<c<<"!=";

while(c>=1){
 //faktorial=faktorial*c
if(c!=1){
cout<<c<<"x";
faktoria= faktoria*c;
}else{
cout<<c<<"=";

}c--;//menurunkan variabel c

}cout<<faktoria;
}
int main(int argc, char *argv[]) {
 faktorial a;
 a.input();
 a.output();
return 0;
}


Berikut outputnya:








Kamis, 19 Maret 2015

Fibonaci

Raptor


4.8 Menghitung a x b dengan metode penjumlahan

Raptor


4.7 Menghitung nilai dari dengan x bilangan real dan y bilangan bulat

Raptor


4.4 Menghitung rata-rata dari integer positif


Raptor


4.3 Mencari rata-rata dari n bilangan positif


Raptor





4.2 Mencetak bilangan ganjil dari 0 sampai 10

Raptor

4.1 Mencetak Bilangan 1 sampai 4





Raptor





Selasa, 03 Maret 2015

Uji Kopentensi Alpro



Uji Kopetensi Tahap 1
  • Modul 1 : Dasar-dasar C++
  • Modul 2 : Tipe Data dan Operator
  • Modul 3 : Pernyataan Kontrol Program
  • Modul 4 : Array, String dan Pointer

Senin, 02 Maret 2015

Modul 1 : Dasar-Dasar C++

1.Sebutkan 3 ciri umum object-Orinted Programming!
   Jawab: Encapsulation, Polymorphism, dan Inheritance.


2. Dasar unit enkapsulasi dalam C++ adalah ?
    Jawab: Class adalah dasar dari encapsulation di C++


3. Output dari Program berikut setelah diekseskusi adalah!
     #include <iostream>;
     using namespace std;
     int main() {
     cout<<"C++ is power programming.";
     return 0;
     }
    Jawab: C++ is power programming.


4. Apa gunanya ditambahkan include <iostream>?
Jawab: #include merupakan satu jenis pengarah preprocessor yang digunakan untuk membaca file  yang dinamakan file judul. iostream merupakan file header yang merupakan standar library dari C++. Dengan perintah cin  masukan (input) dan perintah cout keluaran (output).
 

5. Perintah mendeklarasikan variabel panjang bertipe integer adalah
    Jawab :    int panjang;


6. Perintah menyimpan nilai 10 ke variabel panjang adalah
    Jawab: int panjang = 10 ;


7. Apakah operator input C++?
    Jawab :  >>  adalah operator input c++ diterapkan pada input stream dikenal sebagai operator.

8. Apakah arti '\n'?
    Jawab : '\n' bearti pindah garis/garis baru atau newline character.

9. Mengapa identifier berikut salah :
    int bilangan bulat;

   Jawab : karena menggunakan spasi pada penulian variabel. dan itu menyalahi aturan penulisan variabel C++


10. Apakah Indeks dan indeks adalah identifier yang sama?
      Jawab : tidak, karena penulisan pada c++ bersifat case sensitive. Case sensitive adalah metode pembedaan penulisan huruf keci dan besar. Biasa terdapat dalam prosedur pengetikan password atau struktur bahasa pemograman tertentu.

Share

Twitter Delicious Facebook Digg Stumbleupon Favorites More