Page 285 - Laporan PPL PPG Daljab Tahap 3
P. 285

Contoh 3:




 #include <iostream.h>


 main()



 {


 int x;


 x = 1;


 do


 {


 cout<<"BAHASA C++ "<<endl;


 x ++;



 }


 while(x <= 10);


 return 0;


 }
   280   281   282   283   284   285   286   287   288   289   290