Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- // In ra bang cuu chuong
- // Khai bao cac ham thu vien
- #include<stdio.h>
- #include<conio.h>
- void main()
- {
- for(int i=1;i<=10;i++)
- {
- for(int j=1;j<=10;j++)
- {
- printf("\t");
- printf("%d x %d = %d", i, j, i*j);
- printf("\n");
- }
- }
- }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement