SHARE
TWEET
Untitled
a guest
Jan 29th, 2018
58
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
- static void Main(string[] args)
- {
- for (int q = 0; q < 18; q++)
- {
- Console.WriteLine("ВВЕДИТЕ СТРОКУ: ");
- string result = Console.ReadLine();
- char[] chArray = result.ToCharArray();
- int resInt = 0;
- for (int i = 0; i < chArray.Length; i++)
- {
- if (chArray[i] == 'a' || chArray[i] == 'o' || chArray[i] == 'u' || chArray[i] == 'i' || chArray[i] == 'e' || chArray[i] == 'y')
- {
- resInt++;
- }
- }
- Console.WriteLine(resInt);
- }
- Console.ReadLine();
- }
RAW Paste Data

