document.write('
Data hosted with ♥ by Pastebin.com - Download Raw - See Original
  1. #include <iostream.h>
  2. #include <conio.h>
  3.  
  4. void luas(int &lu,int p,int l)
  5. {lu=p*l;}
  6.  
  7. main(){
  8.  
  9. int pj,lb,hsl;
  10.  
  11. cout<<"INI CONTOH FUNGSI VOID\\n\\n";
  12. cout<<"Panjang = ";cin>>pj;
  13. cout<<"Lebar = ";cin>>lb;
  14.  
  15. luas(hsl,pj,lb);
  16. cout<<"\\nluas = "<<hsl;
  17.  
  18. getch();}
');