Să se verifice dacă o propoziție dată este palindromică.
Problema | PalindromPropozitie | Operații I/O |
palindrom.in /palindrom.out
|
---|---|---|---|
Limita timp | 0.1 secunde | Limita memorie |
Total: 64 MB
/
Stivă 8 MB
|
Id soluție | #45470251 | Utilizator | |
Fișier | palindrompropozitie.cpp | Dimensiune | 738 B |
Data încărcării | 13 Octombrie 2023, 12:07 | Scor / rezultat | Eroare de compilare |
palindrompropozitie.cpp:2:19: warning: extra tokens at end of #include directive [enabled by default] #include <cstring>* ^ palindrompropozitie.cpp:7:7: error: conflicting declaration 'int x' int n,x,y,l,i,j; ^ palindrompropozitie.cpp:6:13: error: 'x' has a previous declaration as 'char x [101]' char s[201],x[101],y[101]; ^ palindrompropozitie.cpp:7:9: error: conflicting declaration 'int y' int n,x,y,l,i,j; ^ palindrompropozitie.cpp:6:20: error: 'y' has a previous declaration as 'char y [101]' char s[201],x[101],y[101]; ^ palindrompropozitie.cpp: In function 'int main()': palindrompropozitie.cpp:17:24: warning: suggest parentheses around '&&' within '||' [-Wparentheses] if(s[j]<'A'&&s[i]>'Z'||s[i]<'a'&&s[i]>'z') ^ palindrompropozitie.cpp:23:10: error: incompatible types in assignment of 'int' to 'char [101]' x=0; ^ palindrompropozitie.cpp:24:10: error: incompatible types in assignment of 'size_t {aka unsigned int}' to 'char [101]' y=strlen(s)-1; ^ palindrompropozitie.cpp:26:19: error: invalid types 'char [201][char [101]]' for array subscript if(s[x]==s[y]) ^ palindrompropozitie.cpp:26:25: error: invalid types 'char [201][char [101]]' for array subscript if(s[x]==s[y]) ^ palindrompropozitie.cpp:28:14: error: lvalue required as increment operand x++; ^ palindrompropozitie.cpp:29:14: error: lvalue required as decrement operand y--; ^
www.pbinfo.ro permite evaluarea a două tipuri de probleme:
Problema PalindromPropozitie 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ă.