Data hosted with ♥ by Pastebin.com - Download Raw - See Original
  1. #include <iostream>
  2. #include <conio.h>
  3.  
  4. using namespace std;
  5.  
  6. int main()
  7. {
  8.     int nilai; //ini adalah variabel bernilai kosong
  9.    
  10.     cout << "Masukan nilai variabel : ";
  11.     cin >> nilai;
  12.     cout << nilai <<endl;
  13.  
  14. getchar();
  15. system("pause");
  16. }