Guest User

n

a guest
Feb 23rd, 2012
14
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C 0.35 KB | None | 0 0
  1. #include <stdio.h>
  2. #include <stdlib.h>
  3.  
  4. /*
  5.  *
  6.  */
  7. int main(int argc, char** argv)
  8. {
  9.     int i,j;
  10.     for (i=10;i>0;i--)
  11.     {
  12.         for (j=0;j<10-i;j++)
  13.             printf(" ");
  14.         for (j=0;j<i;j++)
  15.        
  16.             printf("A");
  17.             printf("\n");    
  18.                  
  19.        
  20.     }
  21.      
  22.     return (EXIT_SUCCESS);
  23. }
Advertisement
Add Comment
Please, Sign In to add comment