6

int childsAge = DateTime.Now.Year - 2013;

while (childsAge < 5) {
Console.DaddyYells("Stop touching the TV!");

Thread.Sleep(60000);

childsAge = DateTime.Now.Year - 2013;
}

Comments
Add Comment