Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- // Ve hinh chu nhat
- // Khai bao cac ham thu vien neu co
- #include<stdio.h>
- #include<conio.h>
- void main()
- {
- int dai,rong;
- scanf("%d%d",&rong,&dai);
- for(int i=0;i<rong;i++)
- {
- for(int j=0;j<dai;j++)
- printf("*");
- printf("\n");
- }
- }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement