먼저 문자열을 설정합니다. -
string str = "Website"; Console.WriteLine("String: "+str);
문자열의 각 문자를 확인하고 변수를 증가시켜 해당 문자가 나타나는 횟수를 계산합니다. -
for (int j = 0; j < str.Length; j++) { if (str[0] == str[j]) { cal++; } }
다음 코드를 실행하여 계산할 수 있습니다. 각 문자의 발생 횟수입니다.
데모 예시
using System; public class Demo { public static void Main() { string str = "Website"; Console.WriteLine("String: "+str); while (str.Length > 0) { Console.Write(str[0] + " = "); int cal = 0; for (int j = 0; j < str.Length; j++) { if (str[0] == str[j]) { cal++; } } Console.WriteLine(cal); str = str.Replace(str[0].ToString(), string.Empty); } Console.ReadLine(); } }
String: Website W = 1 e = 2 b = 1 s = 1 i = 1 t = 1
위 내용은 C# 프로그램은 각 문자의 발생 횟수를 계산합니다.의 상세 내용입니다. 자세한 내용은 PHP 중국어 웹사이트의 기타 관련 기사를 참조하세요!