About

This is default featured slide 1 title

Go to Blogger edit html and find these sentences.Now replace these sentences with your own descriptions.

This is default featured slide 2 title

Go to Blogger edit html and find these sentences.Now replace these sentences with your own descriptions.

This is default featured slide 3 title

Go to Blogger edit html and find these sentences.Now replace these sentences with your own descriptions.

This is default featured slide 4 title

Go to Blogger edit html and find these sentences.Now replace these sentences with your own descriptions.

This is default featured slide 5 title

Go to Blogger edit html and find these sentences.Now replace these sentences with your own descriptions.

Senin, 14 Maret 2016

List Anime Terbaru

List Anime

Sabtu, 04 Mei 2013

KUMPULAN LAGU LYLA

LYLA - BERNAPA TANPAMU
LYLA - MANTAN KEKASIH
LYLA - PERCAYAKAN
LYLA - TAKKAN ADA
LYLA - JANTUNG HATI
LYLA - DETIK TERAKHIR
LYLA - BAHAGIAMU UNTUKKU
LYLA - KUTEMUKAN PENGGANTIMU
LYLA - TERSENYUMLAH
LYLA - UNTUK SESAAT
LYLA - AKHIR CERITA
LYLA - BAIK DISINI
LYLA - ALLAH MAHA BESAR
LYLA - DAN LAGI
LYLA - INDONESIA KU
LYLA - KUNOBATKAN
LYLA - LEBIH DARI BINTANG
LYLA - MAGIC
LYLA - RASA BIRU
LYLA - SAATNYA BICARA
LYLA - SDS
LYLA - DENGAN HATI
LYLA - BERSYUKURLAH
LYLA - JANGAN DATANG LAGI
LYLA - PEREMPUANKU
LYLA - WANITA KU
LYLA - RAIN
LYLA - MANUSIA TERAKHIR
LYLA - HINGGA TIBA WAKTUNYA


Rabu, 01 Mei 2013

Video Klip Lyla - Jangan Datang Lagi

silahkan di download video klip lyla - jangan datang lagi 
http://www.4shared.com/video/Dt0A0BXh/video_klip_Lyla_-_Jangan_Datan.html

Lirik Lagu Lyla - Jangan Datang Lagi


lirik lagu lyla - jangan datang lagi

sedetik bertemu
seperti ku telah mengenalmu
kau yakinkan aku
tuk memilihmu
kau jantung hatiku
kau darah ditubuhku
sampai sesal orang berkata
kau adalah kekasihnya
hancur hatiku
remuk jiwaku
tak bisa aku mengerti
tak bisa aku pahami
biar hujan hapuskan segala
lara hati yang telah kau beri
jangan pernah datang lagi
ku tak ingin kau kembali
biar angin hempaskan mu pergi
tinggalah aku melupakanmu
silahkan di download video klip lyla - jangan datang lagi
http://www.4shared.com/video/Dt0A0BXh/video_klip_Lyla_-_Jangan_Datan.html

Senin, 25 Februari 2013

Perkalian C++ Menggunakan Class

#include <cstdlib>
#include <iostream>

using namespace std;
class Lingkaran{
      public:
             void input();
             int proses();
             void output();
      private :
              int bil1, bil2;
              float hasil;
             
      protected:    
      };
 void Lingkaran :: input(){
     
      cout<<"Masukan nilai bilangan 1 :";
      cin>>bil1;
      cout<<"masukan nilai bilangan 2 :";
      cin>>bil2;
      }
 int Lingkaran :: proses(){
          hasil = bil1*bil2;
          //return hasil;
          }
         
 void Lingkaran :: output(){
          cout<<"hasil :";
          cout<<hasil;
          cout<<endl <<endl;
          }   
int main(int argc, char *argv[])
{
    Lingkaran run;
    run.input();
    run.proses();
    run.output();
    system("PAUSE");
    return EXIT_SUCCESS;
}