Holooly Plus Logo

Input / Question:

Input / Question:

Write a program using a for loop that prints the following output on the screen.

*
***
*****
*******
*********
***********

Verified

Output/Answer

Console.Write("*");

}

Console.WriteLine("\n");

k += 2;

}

Console.ReadKey();

}

}

}

Output: