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