79691667

Date: 2025-07-06 10:27:50
Score: 1
Natty:
Report link
Console.Write("Please, input your age: ");
int age = Convert.ToInt32(Console.ReadLine());

int counter = 0;

while (counter < age)
{
    if (counter >= 5)
    {
        break;
    }

    Console.WriteLine("Happy Birthday!");
    counter++;
}
Reasons:
  • Low length (0.5):
  • Has code block (-0.5):
  • Low reputation (1):
Posted by: Gohulan