Advertisement
dllbridge

Untitled

Oct 10th, 2020
1,237
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C 0.25 KB | None | 0 0
  1.  
  2. #include       <stdio.h>
  3.  
  4.  
  5.  
  6. ////////////////////////////////////////////////////
  7. int main()                                        //
  8. {
  9.     int x = 0;
  10.    
  11.     do  
  12.     {
  13.          
  14.         printf("5 * %02d = %d \n", x, 5 * x);
  15.        
  16.     } while(x++ < 10);
  17.  
  18. }
  19.  
  20.  
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement