Advertisement
hmcristovao

Lista 03 - exerc 38

Jun 18th, 2013
306
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C 0.18 KB | None | 0 0
  1. #include <stdio.h>
  2. int main() {
  3.     int x,i;
  4.     for(x=1; x<=10; x++) {
  5.         printf("\n");
  6.         for(i=1; i<=x; i++)
  7.             printf("%02d ",x);
  8.     }
  9.     return 0;
  10. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement