fork download
  1. #include <stdio.h>
  2.  
  3. int main(void) {
  4. int i,j;
  5. for(i=1;i<=5;i++)
  6. {
  7. for(j=1;j<=5;j++)
  8. {
  9. if(j<=i)
  10. printf("%d ",j);
  11. else
  12. printf(" ");
  13. }
  14. printf("\n");
  15. }
  16. return 0;
  17. }
  18.  
Success #stdin #stdout 0s 5280KB
stdin
Standard input is empty
stdout
1         
1 2       
1 2 3     
1 2 3 4   
1 2 3 4 5