Study - Technology - Download - Hobby
Wednesday, May 11, 2011
Thursday, May 5, 2011
Free Download Rock Songs 2011 full
Linkin Park Waiting For The End.Mp3
Foo Fighters - Rope.Mp3
Rise.Against.-.Help.Is.On.The.Way
Seether - Country Song.Mp3
The Black Keys. Howlin' For You.Mp3
Mumford And Sons - The Cave.Mp3
Incubus - Adolescents.Mp3
Papa Roach Burn.Mp3
Linkin Park Waiting For The End.Mp3
Linkin Park Waiting For The End.Mp3
Selengkapnya...
Monday, April 25, 2011
Free Download Limp Bizkit New Album Gold Cobra
Limp Bizkit Walking Away.Mp3
Limp Bizkit N 2 Gether Now.Mp3
Limp Bizkit Angels.Mp3
Limp Bizkit Killer in You.Mp3
Limp Bizkit Tale To Tale.Mp3
Limp Bizkit Shark Attack.Mp3
Limp Bizkit Loser.Mp3
Limp Bizkit Rock Shit.Mp3
Limp Bizkit Brand New Meaning.Mp3
Limp Bizkit 90TO10_ Angels II_ Middle Finger.Mp3
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...
Sunday, April 3, 2011
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();
}
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...
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...