Guest User

Untitled

a guest
May 21st, 2018
122
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.19 KB | None | 0 0
  1. #include <stdio.h>
  2.  
  3. int main(void)
  4. {
  5. int i;
  6. int j;
  7.  
  8. for(i=1; i<=5; i=i+1){
  9. for(j=1; j<=5; j=j+1){
  10. printf("%d x %d = %d\n",i,j,(i*j));
  11. }
  12.  
  13. return 0;
  14. }
  15. }
Add Comment
Please, Sign In to add comment