How do I create a console app in C# that turns numbers into stars? provide sample input and output
class Program
{
static void Main(string[] args)
{
int number;
Console.Write("Enter a number:");
number = Convert.ToInt32(Console.ReadLine());
Console.WriteLine("You entered :{0}",number);
Console.WriteLine(" "); //For new Line
for (int i = number; i == 0; i--){ //Loop to print *
Console.Write("*");
}
Console.ReadLine(); //This will prevent console to close after completing execution
}
}
How do I create a console app in C# that turns numbers into stars? provide sample...