- 01
- 02
- 03
- 04
- 05
- 06
- 07
- 08
- 09
- 10
- 11
- 12
- 13
- 14
static void Main(string[] args)
{
List<string> AIM=new List<string>();
for(int i=0;i<260;i++)
{
AIM.Add("Student"+i);
}
foreach(string student in AIM)
{
Console.WriteLine($"{student}, welcome AIM") ;
}
}
Комментарии (0) RSS
Добавить комментарий