C'è un problema:(,non mi riconosce le accentate:(,perchè?ti scrivo il programma:
#include <iostream>
using namespace std;
void leggi_nome_file(char a[])
{
cin.getline(a,24);
}
int leggi(char b[])
{
int contatore = 0;
char vocali[15] = {'a','e','i','o','u','ì','ò','à','ù','è','A','E','I','O','U'};
for(int n = 0; n<25; n++)
{
for(int i= 0;i<15;i++)
{
if(b[n] == vocali [i])
contatore++;
}
}
return contatore;
}
int main()
{
char stringa[25] = {0};
cout<<"immetti stringa:";
cout<<endl;
leggi_nome_file(stringa);
cout<<leggi(stringa);
cout<<endl;
system("pause");
return 0;
}