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

Contoh 3:




                                       #include <iostream.h>


                                       main()



                                       {


                                         int x;


                                         x = 1;


                                         do


                                                 {


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


                                                            x ++;



                                                  }


                                         while(x <= 10);


                                         return 0;


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