Viewing profile - Strokkur24

User avatar
Username:
Strokkur24 [ Test out user’s permissions ]
Groups:

Contact Strokkur24

PM:
Send private message

User statistics

Joined:
Sat Apr 01, 2023 9:51 am
Last active:
Sat Apr 01, 2023 10:56 am
Total posts:
0 | Search user’s posts
(0.00% of all posts / 0.00 posts per day)

Signature

class Program
{
static void Main()
{
string text = "Soviet Compaign go brrrrrr";
char[] charArray = text.ToCharArray();

int i = 1;
foreach (char c in charArray)
{
Console.WriteLine($"The {c} in {text} is the {i}. letter");
i++;
}

Console.ReadKey();
}
}