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 = 0; i <= 5; i++) { for (int j = 5; j >= 0; j--) { Console.Write(" *"); } Console.Write("\n"); } Console.ReadLine(); } Output: