Data hosted with ♥ by
Pastebin.com
-
Download Raw
-
See Original
#include<iostream.h>
#include<conio.h>
//Created By Krisna Anggara
void
main
(
)
{
int
nilai
;
cout
<<
"Masukan Nilai Variable : "
;
cin
>>
nilai
;
cout
<<
endl
;
cout
<<
"Isi Variable adalah "
<<
nilai
;
getch
(
)
;
}