Recent Posts

28 December 2008

Contoh Program Variabel C++ Kedua

Contoh Program Variabel C++ Kedua

#include<iostream.h>

#include<conio.h>

main ()

{

int a,b;

int hasil;

cout<<"Masukan angka = ";

cin>>a;

cout<<"Masukan angka = ";

cin>>b;

hasil = a - b;

cout<<"Hasil Pengurangan : " <<a<< " - " <<b<< " = "<< hasil;

getch();

}

Baca Selengkapnya “Contoh Program Variabel C++ Kedua”

Contoh Program Variabel C++

Contoh Program Variabel C++ Pertama

#include<iostream.h>

#include<conio.h>

main ()

{

int a,b;

int hasil;

a=5;

b=2;

hasil = a - b;

cout<<hasil;

getch();

}

Baca Selengkapnya “Contoh Program Variabel C++”

Contoh Program C++

Contoh Program C++ Pertama

#include<iostream.h>

#include<conio.h>

main ()

{

cout<<"Selamat Belajar C++";

getch();

}

Baca Selengkapnya “Contoh Program C++”