Skip to main content

Posts

Showing posts from March, 2013

Kirim SMS Gratis Disini

Kirim SMS Gratis - Selamat datang Di Scupe.Id free SMS. Kamu dapat mengirim pesan singkat disini secara gratis ke semua operator(tanpa dikenai Biaya). Dan ini work 100% dan gratis. jadi sekarang kamu tidak usah memikirkan pulsa lagi, dengan hanya mengunjungi blog ini anda dapat langsung mengirimkan pesan singkat keteman anda secara geratis dan yang terpenting ini UNLIMITED. Cara: >Masukkan Nomor HP tujuan (ex:08777158xxxx) >Ketik kata-kata yang anda ingin kirimkan(jangan lupa beri nama anda) >lalu klik send SMS Peringatan!!!!! anda harus menuliskan nama anda agar teman anda bisa mengetahui pengirim ini di pesan singkat, karena nomor yang akan teman anda terima merupakan nomor provider. dan buka web ini untuk melihat inbox dari teman anda http://www.sms-online.web.id/inbox?hp= NOHP ( No HP diganti dengan angka No hp misal 0812345678). Selamat Menikmati.  Thank-you for SMS-Online.Web.Id copyright  ©  2013 Scupe.Id

Cheat 8 Ball Pool Facebook Garis 2013 100% work

Cheat 8 Ball Poll Facebook  UPDATE JULI 2013 - Kali ini  saya akan memposting cara mengecheat 8 Ball Pool by miniclip Garis. Cheat ini dapat memperpanjang garis arah bola. sehingga kita akan  lebih mudah memasukan bola kedalam lubang. Dan cheat ini juga telah saya coba dan hasilnya 100% work. Tanpa basa-basi lagi kita akan langsung menuju ke TKP. * Maaf untuk sementara cheat tidak aktif. Saya akan sesegera mungkin mengupdate post ini, Terimakasih. Lihat yg ini juga: Cheat 8 Ball Pool Cue dan Table Permanen Software yang di butuhkan: Cheat Engine Browser Mozilla/ Google Chrome   Tutorial: Masuk/ Buka game 8 ball pool Di facebook Setelah masuk ke lobby/ Halaman utama/ Halaman Awal 8 Ball Pool, Buka Cheat Engine Lalu open Proses [ Mozilla = Plugin Container dan untuk google chrome = Chrome.Exe ]  *untuk google chrome coba satu satu prosesnya Ganti value byte yang tadinya bertuliskan 4 byte jadi Array of Byte Masukkan Code yang berwarna merah dan First Scan A2 A0 A2 A0 62 04 12 17  Se

C++ Simple Calculator

C++ Simple Calculator  - On the previous post, writter have been explaining about Data Type . So, we can applying usability of Data Type for simple calculator. And we must understand about Operator Logic on C++ Programming. The concept of C++ Simple Calculator : - Insert two values in two variables - procces the variables using operand. - place the result of variables process in the other variable. Than, we look below is the example of C++ Simple Calculator  : #include<iostream> #include<windows.h> using namespace std; int main() {         double a,b,c;         int x;               cout<<"======== MENU ======== \";         cout<<"[1] Addition \n";         cout<<"[2] Reduction \n";         cout<<"[3] Multiplication \n";         cout<<"[4] Division \n";         cout<<"[5] Exit \n";         cout<<"====================== \n";         cout<<"Enter number of

C++ Data Type

C++ Data Type  - In learning a Programming Language ( C++ Programming ) you must knowing what is Data Type. The Data Type is use to save a value in memory. Data type also affects what will processed by the processor. Here the writter will describe the C++ Data Type.  The data type on C++ Programming provides five of type data are : Integer, for numeric values rounded. Float, for fractional numeric values. Double, for fractional numeric values with a longer span Char, for character values. Below is detail for C++ Data Type  : char , size 1 byte, range -128 up to 127. int , size 2 bytes, range -32.768 up to 32.767. float , size 4 bytes, range -3.4E-38 up to 3.4E+38. double , size 8 bytes, range 1.7E-308 up to 1.7E+308. long double , size 10 bytes, range 3.4E-4832 up to 1.1E+4932 void , size 0. That is a data type in C++ Programming. Paper 4Share - C++ Data Type

C++ Input

C++ Input - The last lesson, wriiter has sharing how to Printing Text C++ Using COUT Syntax [Basic Lesson] . And than now wriiter will explain the concept of C++ Input. Before explaining concept, you must have kwonlagde about Data Type  in C Programming. Basic concept of C++Input is : User inserting a value The value will saved in variable Know you can analize the concept. Below is the example of input and output a value. #include<iostream> #include<stdlib.h> using namespace std; int main() {        int a;              cout<<"Insert Your Age : ";        cin>>a;        cout<<endl;        cout<<endl;        cout<<"Your Age is "<<a;        cout<<endl;        system("pause"); } After compiled and run. The print out of it is at below Below the explain of syntax : cin>>a   is use to inserting a value form keyboard to the variable. For other syntax, you can read in  Printing Text C++ Using COUT Syntax [