implement the GetWord method so that it will display the word that is formed by concatenating the characters at even positions
using System;
public class GetWordProblem
{
public static void Main(string[] args)
{
string result = GetWord("iheiliiiliiio");
Console.WriteLine("Result is {0}", result);
}
public static string GetWord(string input)
{
throw new NotImplementedException();
}
}
в чем проблемы возникли?
с добавлением букв которые соответствуют задачи, по идее лучше сделать через foreach, но я делаю через обычный for, правда индекс или что-то такое - не подбираю правилно public static string GetWord(string input) { string result; for (int i = 0; i < input.Length; ++i) { if (i % 2 == 0) { result += input[i]; } } /*foreach (var i in input) { }*/ return input; }
именно for, а не foreach здесь и нужен
Обсуждают сегодня