Advertisement
Guest User

Untitled

a guest
Aug 12th, 2017
66
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C 0.25 KB | None | 0 0
  1. #include <stdio.h>
  2.  
  3. int main()
  4. {
  5. int i=0, j=0, nombreligne=0, nombrecolonne=0;
  6. scanf("%d", &nombreligne);
  7. scanf("%d", &nombrecolonne);
  8. for( i=0;i<nombreligne; i++)
  9. {
  10. for (j=0; j<nombrecolonne; j++)
  11. {
  12. printf("X");
  13. }
  14. printf("\n");
  15. }
  16. return 0;
  17. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement