Monday, April 11, 2011

Download Lagu Lolita Alay.mp3 Free Download

Lagu anak alay.... owkowkowko
Langsung Download!! link di bawah gan
Download Lolita Alay.mp3
Selengkapnya...

Wednesday, April 6, 2011

Download Clean Register.

If your computer have problem with register, you can clean it with clean register, CleanReg3 doesn't clean the Registry for you-- it finds every unresolved link and provides a way for you to make the decision. Just start the program to complete the Registry scan. Five separate windows show missing files and associated references. In addition to all referenced files, undo logging, and a hidden list. The key to using CleanReg3 involves navigating the Missing File Tree
Download Clean Register

Selengkapnya...

Tuesday, April 5, 2011

Cara Buat Bulan di C++

#include
main(){


int kode;
printf(" NAMA BULAN\n");
printf("======================\n");

printf("Masukan kode bulan = ");scanf("%d",&kode);

switch(kode)
{
case 1 : printf("Januari\n");break;
case 2 : printf("Februari\n");break;
case 3 : printf("Maret\n");break;
case 4 : printf("April\n");break;
case 5 : printf("Mey\n");break;
case 6 : printf("Juni\n");break;
case 7 : printf("Juli\n");break;
case 8 : printf("Agustus\n");break;
case 9 : printf("September\n");break;
case 10 : printf("Oktober\n");break;
case 11 : printf("November\n");break;
case 12 : printf("Desember\n");break;
default : printf("Tidak dapat di seteksi boss!!!\n");
}
getch();
}
Selengkapnya...

Monday, April 4, 2011

The selfish philosopher rages.

The selfish philosopher rages.

Now that you've added your blog, we need to make sure that you own this blog.

Create a new post on your blog. Copy and paste the randomly generated sentence shown above exactly as it is given anywhere in your new post. Publish the new post so that it is viewable at your blog's URL.

Once this sentence is on your blog, come back to your PPP account and press the claim blog button. You can remove the post after you have successfully claimed the blog. Selengkapnya...

Saturday, April 2, 2011

Cek Genap Ganjil di C++

#include
main(){
int bil;
printf("Masukan bilangan = ");scanf("%d",&bil);



if(bil%2==1)
printf("Termasuk bilangan ganjil\n");
else
if(bil==0)
printf("inputan 0\n");
else
printf("Termasuk bilangan genap\n");

getch();
}
Selengkapnya...

Mengurutkan / Sort C++

main(){
int bil1,bil2,bil3;

#include


printf("Masukan bilangan 1= ");scanf("%d",&bil1);
printf("Masukan bilangan 2= ");scanf("%d",&bil2);
printf("Masukan bilangan 3= ");scanf("%d",&bil3);
if (bil1>bil2)
if(bil1>bil3)
if(bil2>bil3)
printf("%d %d %d \n",bil3,bil2,bil1);
else
printf("%d %d %d \n",bil2,bil3,bil1);
else

printf("%d %d %d \n",bil2,bil1,bil3);
else
if(bil2>bil3)
printf("%d %d %d \n",bil3,bil1,bil2);

getch();
}



Selengkapnya...

Delet and remove trojan!

Anti virus selalu menscan sendiri, mungkin itu terkena virus trojan

Cara Menghapus trojan nya menggunakan aplikasi HJTInstal anti spyware
http://www.4shared.com/file/9WYjOF_X/HJTInstall.html

Selengkapnya...

Download Maddi Jane Full


Maddi Jane - Breakeven (Falling to Pieces).mp3
Maddi Jane - Impossible by Shontelle.mp3
Maddi Jane - Jar Of Heart.mp3
Maddi Jane - Mine.mp3
Maddi Jane - Price Tag (by Jessie J).mp3
Selengkapnya...

Thursday, March 31, 2011

Membuat Matriks di C++

#include
int main(){
int matrix[2][2],baris,kolom;

for (baris=0;baris<2 ;baris++ ) { for (kolom=0;kolom<2 ;kolom++ ) { printf("Masukan nilai [%d][%d] ",baris+1,kolom+1);scanf("%d",&matrix[baris][kolom]); } } printf("\n"); for (baris=0;baris<2 ;baris++ ) { for (kolom=0;kolom<2 ;kolom++ ) { printf("%d\t ",matrix[baris][kolom]); } printf("\n"); } getch(); }
Selengkapnya...

Selengkapnya...