using System; public class Test { public static void Main() { var t = 0; for (var i = 0; i < 5; i++) { t++; Console.WriteLine($"Yo! you been in this loop {t} times!"); } } }
Standard input is empty
Yo! you been in this loop 1 times! Yo! you been in this loop 2 times! Yo! you been in this loop 3 times! Yo! you been in this loop 4 times! Yo! you been in this loop 5 times!