Click here to hide categories Click here to show left categories
User: Home welcome : Guest Log In / Register here
static void Main(string[] args) { for (int i = 5; i >= 0; i--) { for (int j = i; j >= 0; j--) { Console.Write(" " + j); } Console.Write("\n"); } Console.ReadLine(); } Output