/
merdan
/
controlWorks_tests
Обзор
Документация
Войти
/
merdan
/
controlWorks_tests
Код
Запросы
0
Задачи
Вики
Пакеты
0
Релизы
0
CI/CD
Аналитика
Безопасность
master
Methods/ThirdPositionFromTheEnd.cs
26 строк
609 B
merdan
I wrote the tests
15 ноя 2025, 04:36
15 ноя 2025, 04:36
7047a79
Код
Авторство
О чём код?
namespace Methods; public class ThirdPositionFromTheEnd { public static char Output(string str) { if (str == null) { throw new ArgumentNullException(nameof(str)," The string cannot be null!"); } if (str.Length == 0) { throw new ArgumentException(" The string cannot be empty!", nameof(str)); } if (str.Length < 3) { throw new ArgumentException(" The string cannot be less than 3 characters!", nameof(str)); } char third = str[^3]; return third; } }