👤

Elaborati o functie care calcueaza numarul de vocale intrun sir.var rog sa ma ajutati.Cine ma ajuta dau coroana


Răspuns :

#include <iostream>
#include <string.h>
using namespace std;
int main()
{
   char s[255],v[11]="AEIOUaeiou";
   int i=0,ct=0;
   cin.get(s,255);
   while(i<strlen(s))
   {
        if(strchr(v,s[i]))
        {
           ct++;
           i++;
       }
        else
       {
         i++;
       }
  }
 cout<<ct;
return 0;
}
function numar(s:string):integer;
var 

 i:integer;
 voc:set of char;

begin

 voc:=['a','e','i','o','u','A','E','I','O','U'];
 
 for i:=1 to length(s) do
  if(s[i] in voc) then 
   numar+=1;

end;