/
merdan
/
controlWorks_tests
Обзор
Документация
Войти
/
merdan
/
controlWorks_tests
Код
Запросы
0
Задачи
Вики
Пакеты
0
Релизы
0
CI/CD
Аналитика
Безопасность
master
Methods/NumberOfLowercaseCharacters.cs
25 строк
547 B
merdan
I wrote the tests
15 ноя 2025, 04:36
15 ноя 2025, 04:36
7047a79
Код
Авторство
О чём код?
namespace Methods; public class NumberOfLowercaseCharacters { public static int Count (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)); } int count=0; for (int i=0; i< str.Length; i++) { if(Char.IsLower(str[i])) count++; } return count; } }