Data hosted with ♥ by Pastebin.com - Download Raw - See Original
  1. #include<iostream.h>
  2. #include<conio.h>
  3.  
  4. //Created By Krisna Anggara
  5.  
  6. void main()
  7. {
  8. int nilai;
  9.  
  10. cout<<"Masukan Nilai Variable : "; cin>>nilai;
  11. cout<<endl;
  12. cout<<"Isi Variable adalah "<<nilai;
  13.  
  14. getch();
  15. }