int i = 0;
while (i < 10)
{
Console.WriteLine("欢迎来到宁波教育学院学习");
i++;
break;//跳出循环
}
Console.ReadKey();