#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 | #53763560 | Utilizator | |
Fișier | pozitii.cpp | Dimensiune | 292 B |
Data încărcării | 11 Noiembrie 2024, 10:20 | Scor / rezultat | Eroare de compilare |
pozitii.cpp:9:15: warning: character constant too long for its type [enabled by default] if(strchr('aeiou',T[i])&&strchr('bcdfghjklmnpqrstvwxyz',T[i-1])&&strchr('bcdfghjklmnpqrstvwxyz',T[i+1])) ^ pozitii.cpp:9:37: warning: character constant too long for its type [enabled by default] if(strchr('aeiou',T[i])&&strchr('bcdfghjklmnpqrstvwxyz',T[i-1])&&strchr('bcdfghjklmnpqrstvwxyz',T[i+1])) ^ pozitii.cpp:9:77: warning: character constant too long for its type [enabled by default] if(strchr('aeiou',T[i])&&strchr('bcdfghjklmnpqrstvwxyz',T[i-1])&&strchr('bcdfghjklmnpqrstvwxyz',T[i+1])) ^ pozitii.cpp: In function 'int main()': pozitii.cpp:8:23: warning: comparison between signed and unsigned integer expressions [-Wsign-compare] for(int i=1;i<strlen(T);i++) ^ pozitii.cpp:9:27: error: call of overloaded 'strchr(int, char&)' is ambiguous if(strchr('aeiou',T[i])&&strchr('bcdfghjklmnpqrstvwxyz',T[i-1])&&strchr('bcdfghjklmnpqrstvwxyz',T[i+1])) ^ pozitii.cpp:9:27: note: candidates are: In file included from pozitii.cpp:2:0: /usr/include/string.h:223:1: note: char* strchr(char*, int) <near match> strchr (char *__s, int __c) __THROW ^ /usr/include/string.h:223:1: note: no known conversion for argument 1 from 'int' to 'char*' /usr/include/string.h:229:1: note: const char* strchr(const char*, int) <near match> strchr (const char *__s, int __c) __THROW ^ /usr/include/string.h:229:1: note: no known conversion for argument 1 from 'int' to 'const char*' pozitii.cpp:9:67: error: call of overloaded 'strchr(int, char&)' is ambiguous if(strchr('aeiou',T[i])&&strchr('bcdfghjklmnpqrstvwxyz',T[i-1])&&strchr('bcdfghjklmnpqrstvwxyz',T[i+1])) ^ pozitii.cpp:9:67: note: candidates are: In file included from pozitii.cpp:2:0: /usr/include/string.h:223:1: note: char* strchr(char*, int) <near match> strchr (char *__s, int __c) __THROW ^ /usr/include/string.h:223:1: note: no known conversion for argument 1 from 'int' to 'char*' /usr/include/string.h:229:1: note: const char* strchr(const char*, int) <near match> strchr (const char *__s, int __c) __THROW ^ /usr/include/string.h:229:1: note: no known conversion for argument 1 from 'int' to 'const char*' pozitii.cpp:9:107: error: call of overloaded 'strchr(int, char&)' is ambiguous if(strchr('aeiou',T[i])&&strchr('bcdfghjklmnpqrstvwxyz',T[i-1])&&strchr('bcdfghjklmnpqrstvwxyz',T[i+1])) ^ pozitii.cpp:9:107: note: candidates are: In file included from pozitii.cpp:2:0: /usr/include/string.h:223:1: note: char* strchr(char*, int) <near match> strchr (char *__s, int __c) __THROW ^ /usr/include/string.h:223:1: note: no known conversion for argument 1 from 'int' to 'char*' /usr/include/string.h:229:1: note: const char* strchr(const char*, int) <near match> strchr (const char *__s, int __c) __THROW ^ /usr/include/string.h:229:1: note: no known conversion for argument 1 from 'int' to 'const char*'
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ă.