#972
Pozitii
Se dă un șir de caractere. Să se determine câte vocale din șir sunt cuprinse între două consoane.
Problema | Pozitii | Operații I/O | tastatură/ecran |
---|---|---|---|
Limita timp | 0.1 secunde | Limita memorie |
Total: 64 MB
/
Stivă 8 MB
|
Id soluție | #54160740 | Utilizator | |
Fișier | pozitii.cpp | Dimensiune | 291 B |
Data încărcării | 21 Noiembrie 2024, 08:32 | Scor / rezultat | Eroare de compilare |
pozitii.cpp: In function 'int main()': pozitii.cpp:7:4: error: 'cin' was not declared in this scope cin.get(S,256); ^ pozitii.cpp:7:4: note: suggested alternative: In file included from pozitii.cpp:2:0: /usr/include/c++/4.8/iostream:60:18: note: 'std::cin' extern istream cin; /// Linked to standard input ^ pozitii.cpp:8:23: warning: comparison between signed and unsigned integer expressions [-Wsign-compare] for(i=0;i<=strlen(S);i++) ^ pozitii.cpp:9:29: error: invalid conversion from 'const char*' to 'int' [-fpermissive] if(S[i]==strchr(S,"aeiou") && S[i-1]==S[i+1]==strchr(S,"aeiou")) ^ In file included from /usr/include/c++/4.8/cstring:42:0, from pozitii.cpp:3: /usr/include/string.h:223:1: error: initializing argument 2 of 'char* strchr(char*, int)' [-fpermissive] strchr (char *__s, int __c) __THROW ^ pozitii.cpp:9:29: error: ISO C++ forbids comparison between pointer and integer [-fpermissive] if(S[i]==strchr(S,"aeiou") && S[i-1]==S[i+1]==strchr(S,"aeiou")) ^ pozitii.cpp:9:66: error: invalid conversion from 'const char*' to 'int' [-fpermissive] if(S[i]==strchr(S,"aeiou") && S[i-1]==S[i+1]==strchr(S,"aeiou")) ^ In file included from /usr/include/c++/4.8/cstring:42:0, from pozitii.cpp:3: /usr/include/string.h:223:1: error: initializing argument 2 of 'char* strchr(char*, int)' [-fpermissive] strchr (char *__s, int __c) __THROW ^ pozitii.cpp:9:66: error: ISO C++ forbids comparison between pointer and integer [-fpermissive] if(S[i]==strchr(S,"aeiou") && S[i-1]==S[i+1]==strchr(S,"aeiou")) ^ pozitii.cpp:9:40: warning: suggest parentheses around comparison in operand of '==' [-Wparentheses] if(S[i]==strchr(S,"aeiou") && S[i-1]==S[i+1]==strchr(S,"aeiou")) ^ pozitii.cpp:11:4: error: 'cout' was not declared in this scope cout<<k; ^ pozitii.cpp:11:4: note: suggested alternative: In file included from pozitii.cpp:2:0: /usr/include/c++/4.8/iostream:61:18: note: 'std::cout' extern ostream cout; /// Linked to standard output ^
www.pbinfo.ro permite evaluarea a două tipuri de probleme:
Problema Pozitii 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ă.