Advertisement
nguyenhappy92

In bản cửu chương ra màn hình

Oct 6th, 2015
152
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.26 KB | None | 0 0
  1. // In ra bang cuu chuong
  2. // Khai bao cac ham thu vien
  3.  
  4. #include<stdio.h>
  5. #include<conio.h>
  6.  
  7. void main()
  8. {
  9. for(int i=1;i<=10;i++)
  10. {
  11. for(int j=1;j<=10;j++)
  12. {
  13. printf("\t");
  14. printf("%d x %d = %d", i, j, i*j);
  15. printf("\n");
  16.  
  17. }
  18. }
  19. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement