#95
PerechiVocale
Se dă un șir de caractere reprezentând o propoziție formată din litere mici ale alfabetului englez și spații. Determinați numărul de perechi de vocale consecutive din propoziție.
Variante Bacalaureat 2009
Problema | PerechiVocale | Operații I/O | tastatură/ecran |
---|---|---|---|
Limita timp | 0.1 secunde | Limita memorie |
Total: 64 MB
/
Stivă 8 MB
|
Id soluție | #54862756 | Utilizator | |
Fișier | perechivocale.cpp | Dimensiune | 1.27 KB |
Data încărcării | 10 Decembrie 2024, 17:46 | Scor / rezultat | 40 puncte |
perechivocale.cpp: In function 'int vocale(char, char*)': perechivocale.cpp:6:27: warning: comparison between signed and unsigned integer expressions [-Wsign-compare] for(int i=0;i<strlen(v);i++) ^ perechivocale.cpp: In function 'int este(char*, char*)': perechivocale.cpp:15:27: warning: comparison between signed and unsigned integer expressions [-Wsign-compare] for(int j=0;j<strlen(a);j++) ^ perechivocale.cpp:17:31: warning: comparison between signed and unsigned integer expressions [-Wsign-compare] for(int i=0;i<strlen(v);i++) ^ perechivocale.cpp:29:19: warning: comparison between signed and unsigned integer expressions [-Wsign-compare] if(k==strlen(a))return 0; ^ perechivocale.cpp:31:18: warning: comparison between signed and unsigned integer expressions [-Wsign-compare] if(k<strlen(a) && k>0)return 1; ^ perechivocale.cpp: In function 'int pozConU(char*, char*)': perechivocale.cpp:49:27: warning: comparison between signed and unsigned integer expressions [-Wsign-compare] for(int i=0;i<strlen(a);i++) ^ perechivocale.cpp: In function 'int main()': perechivocale.cpp:63:29: warning: comparison between signed and unsigned integer expressions [-Wsign-compare] for(int i=0;i<strlen(a)-1;i++) ^ perechivocale.cpp:65:22: warning: suggest parentheses around '&&' within '||' [-Wparentheses] if(a[i]=='e' && a[i+1]=='a' || a[i]=='i' && a[i+1]=='e' ^ perechivocale.cpp:66:22: warning: suggest parentheses around '&&' within '||' [-Wparentheses] || a[i]=='o' && a[i+1]=='u' || a[i]=='u' && a[i+1]=='a')k++; ^ perechivocale.cpp:66:50: warning: suggest parentheses around '&&' within '||' [-Wparentheses] || a[i]=='o' && a[i+1]=='u' || a[i]=='u' && a[i+1]=='a')k++; ^ perechivocale.cpp:60:18: warning: unused variable 'v' [-Wunused-variable] char a[256], v[12]="AEIOUaeiou"; ^ perechivocale.cpp: In function 'int este(char*, char*)': perechivocale.cpp:32:1: warning: control reaches end of non-void function [-Wreturn-type] } ^
Test | Timp | Mesaj evaluare | Scor posibil | Scor obținut | ||
---|---|---|---|---|---|---|
1 | 0 secunde | OK. | 10 | 10 | Exemplu | |
2 | 0 secunde | Raspuns gresit. | 30 | 0 | ||
3 | 0 secunde | OK. | 30 | 30 | ||
4 | 0 secunde | Raspuns gresit. | 30 | 0 | ||
Punctaj total | 40 |
www.pbinfo.ro permite evaluarea a două tipuri de probleme:
Problema PerechiVocale face parte din prima categorie. Soluția propusă de tine va fi evaluată astfel:
Suma punctajelor acordate pe testele utilizate pentru verificare este 100. Astfel, soluția ta poate obține cel mult 100 de puncte, caz în care se poate considera corectă.