daily pastebin goal
41%
SHARE
TWEET

Untitled

a guest Jan 29th, 2018 58 Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
  1. static void Main(string[] args)
  2.         {
  3.             for (int q = 0; q < 18; q++)
  4.             {
  5.                 Console.WriteLine("ВВЕДИТЕ СТРОКУ: ");
  6.                 string result = Console.ReadLine();
  7.                 char[] chArray = result.ToCharArray();
  8.                 int resInt = 0;
  9.                 for (int i = 0; i < chArray.Length; i++)
  10.                 {
  11.                     if (chArray[i] == 'a' || chArray[i] == 'o' || chArray[i] == 'u' || chArray[i] == 'i' || chArray[i] == 'e' || chArray[i] == 'y')
  12.                     {
  13.                         resInt++;
  14.                     }
  15.                 }
  16.                 Console.WriteLine(resInt);
  17.             }
  18.             Console.ReadLine();
  19.         }
RAW Paste Data
Pastebin PRO WINTER Special!
Get 40% OFF Pastebin PRO accounts!
Top