Write a program in C# Sharp to count a total number of vowel or consonant in a string

  • برمجة سي شارب
  • برمجة

Write a program in C# Sharp to count a total number of vowel or consonant in a string.

Test Data :
Input the string : Welcome to w3resource.com
Expected Output :

The total number of vowel in the string is : 9 
The total number of consonant in the string is : 12

الأجوبة

using System;  
public class Exercise9  
{  
    public static void Main() 
{
    string str;
    int i, len, vowel, cons;	
      Console.Write("\n\nCount total number of vowel or consonant :\n");
      Console.Write("----------------------------------------------\n"); 	
      Console.Write("Input the string : ");
      str = Console.ReadLine();		
    vowel = 0;
    cons = 0;
    len = str.Length;
    for(i=0; i<len; i++)
    {
        if(str[i] =='a' || str[i]=='e' || str[i]=='i' || str[i]=='o' || str[i]=='u' || str[i]=='A' || str[i]=='E' || str[i]=='I' || str[i]=='O' || str[i]=='U')
        {
            vowel++;
        }
        else if((str[i]>='a' && str[i]<='z') || (str[i]>='A' && str[i]<='Z'))
        {
            cons++;
        }
    }
   Console.Write("\nThe total number of vowel in the string is : {0}\n", vowel);
   Console.Write("The total number of consonant in the string is : {0}\n\n", cons);
	}
}
هل كان المحتوى مفيد؟

تبحث عن مدرس اونلاين؟

محتاج مساعدة باختيار المدرس الافضل؟ تواصل مع فريقنا الان لمساعدتك بتأمين افضل مدرس
ماهو التخصص الذي تبحث عنه؟
اكتب هنا...