(Choose 1 answer)
static void Main(string[] args)
{
Given the code below, which uses input would make the output "Hello!" ?
int i = int.Parse(Console.ReadLine());
if (i > 100)
{ Console.WriteLine("Hello!");
}
else
{
Console.WriteLine("Hi!");}
Console.ReadLine();
}
A. If the user inputs 120
B. If the user inputs 90
C. If the user inputs 99
D. If the user inputs 100
Exit 30