Data hosted with ♥ by
Pastebin.com
-
Download Raw
-
See Original
#include <iostream>
#include <conio.h>
using
namespace
std
;
int
main
(
)
{
int
nilai
;
//ini adalah variabel bernilai kosong
cout
<<
"Masukan nilai variabel : "
;
cin
>>
nilai
;
cout
<<
nilai
<<
endl
;
getchar
(
)
;
system
(
"pause"
)
;
}