fork download
  1. using System;
  2.  
  3. public class Test
  4. {
  5. public static void Main()
  6. {
  7. int i = 0;
  8. int j = 0;
  9. for ( i = 0; i < 4; i++ )
  10. {
  11. for ( j = 0; j < 4; j++ )
  12. {
  13. if ( j < 3 - i )
  14. Console.Write(" ");
  15. else
  16. Console.Write("█");
  17. }
  18. Console.Write('\n');
  19. }
  20.  
  21. Console.ReadKey();
  22. }
  23. }
Success #stdin #stdout 0.02s 33888KB
stdin
Standard input is empty
stdout
   █
  ██
 ███
████