TheAllistair TheAllistair 08-03-2021 Informatyka Rozwiązane Bardzo proszę o pomoc, język c++ Zmodyfikuj kod tak aby zliczał wyrazy składajace się z samych samogłosek #include #include /* run this program using the console pauser or add your own getch, system("pause") or input loop */ using namespace std; int main(int argc, char** argv) { ifstream we("hasla.txt"); string a; int k=0,m=0; for(int i=0;i<202;i++) { we>>a; for(int j=0;j { if(a[j]!='a' && a[j]!='e' && a[j]!='i'&& a[j]!='o'&& a[j]!='u'&& a[j]!='y' ) k++; } if(k==a.length()) { cout< k=0; } cout<<" wyrazoe bez litery 'a' jest "< return 0; }