Page 15 - e-book loop_Neat
P. 15

Ex.  โปรแกรม







                                                                for1.cpp



















         #include<stdio.h>


         #include<conio.h>


          main()                                                   เริ่มต้นให้ count=0



         {


                      int count;                                        ท าในขณะที่ count<10


                      printf(“Begin\n”);                                      เพิ่มค่า count ทีละ 1

                                                                                 count=count+1
                      for(count=0;count<10;count++)


                                     printf(“Hello\n”);


                      printf(“End\n”);



         }
   10   11   12   13   14   15   16   17   18   19   20