Guys, tell me what's wrong in the code?
According to the idea, he should output line by line to the console but they appear simultaneously
bool b = true; int t = 0; int t2 = 0; while (b) { t = t + 1; if (t == 10000) { t = 0; t2 = t2 + 1; } if (t2 == 10 && t == 0) { Console.WriteLine("11111"); } if (t2 == 20 && t == 0) { Console.WriteLine("1111"); } if (t2 == 30 && t == 0) { Console.WriteLine("111"); } if (t2 == 40 && t == 0) { Console.WriteLine("11"); } if (t2 == 50 && t == 0) { Console.WriteLine("11"); } if (t2 == 60 && t == 0) { Console.WriteLine("1"); } }