#96
PalindromMaxim
Să se scrie un program care citește o propoziție și determină cuvântul palindrom de lungime maximă.
Problema | PalindromMaxim | Operații I/O | tastatură/ecran |
---|---|---|---|
Limita timp | 0.1 secunde | Limita memorie |
Total: 64 MB
/
Stivă 8 MB
|
Id soluție | #54539008 | Utilizator | |
Fișier | palindrommaxim.cpp | Dimensiune | 493 B |
Data încărcării | 02 Decembrie 2024, 08:25 | Scor / rezultat | Eroare de compilare |
palindrommaxim.cpp:1:21: warning: extra tokens at end of #include directive [enabled by default] #include <iostream> #include <cstring> using namespace std; ^ palindrommaxim.cpp: In function 'bool palindrom(char*)': palindrommaxim.cpp:3:56: error: 'strlen' was not declared in this scope bool palindrom(char s[]) { for(int i = 0 , j = strlen(s)-1; i < j ; ++i , --j) if(tolower(s[i])!=tolower(s[j])) return 0; return 1; ^ palindrommaxim.cpp: In function 'int main()': palindrommaxim.cpp:7:45: error: 'cin' was not declared in this scope int main() { char s[256] , *p , pal[11]=""; cin.getline(s , 256); p = strtok(s , " .,;:"); bool gasit = false; while(p) { if(palindrom(p)) if(strlen(p) > strlen(pal)) strcpy(pal , p) , gasit = 1; p = strtok(NULL , " .;:,"); } if(gasit) cout << pal; else cout << "IMPOSIBIL"; return 0; } ^ palindrommaxim.cpp:7:45: note: suggested alternative: In file included from palindrommaxim.cpp:1:0: /usr/include/c++/4.8/iostream:60:18: note: 'std::cin' extern istream cin; /// Linked to standard input ^ palindrommaxim.cpp:7:89: error: 'strtok' was not declared in this scope int main() { char s[256] , *p , pal[11]=""; cin.getline(s , 256); p = strtok(s , " .,;:"); bool gasit = false; while(p) { if(palindrom(p)) if(strlen(p) > strlen(pal)) strcpy(pal , p) , gasit = 1; p = strtok(NULL , " .;:,"); } if(gasit) cout << pal; else cout << "IMPOSIBIL"; return 0; } ^ palindrommaxim.cpp:7:151: error: 'strlen' was not declared in this scope int main() { char s[256] , *p , pal[11]=""; cin.getline(s , 256); p = strtok(s , " .,;:"); bool gasit = false; while(p) { if(palindrom(p)) if(strlen(p) > strlen(pal)) strcpy(pal , p) , gasit = 1; p = strtok(NULL , " .;:,"); } if(gasit) cout << pal; else cout << "IMPOSIBIL"; return 0; } ^ palindrommaxim.cpp:7:182: error: 'strcpy' was not declared in this scope int main() { char s[256] , *p , pal[11]=""; cin.getline(s , 256); p = strtok(s , " .,;:"); bool gasit = false; while(p) { if(palindrom(p)) if(strlen(p) > strlen(pal)) strcpy(pal , p) , gasit = 1; p = strtok(NULL , " .;:,"); } if(gasit) cout << pal; else cout << "IMPOSIBIL"; return 0; } ^ palindrommaxim.cpp:7:237: error: 'cout' was not declared in this scope int main() { char s[256] , *p , pal[11]=""; cin.getline(s , 256); p = strtok(s , " .,;:"); bool gasit = false; while(p) { if(palindrom(p)) if(strlen(p) > strlen(pal)) strcpy(pal , p) , gasit = 1; p = strtok(NULL , " .;:,"); } if(gasit) cout << pal; else cout << "IMPOSIBIL"; return 0; } ^ palindrommaxim.cpp:7:237: note: suggested alternative: In file included from palindrommaxim.cpp:1:0: /usr/include/c++/4.8/iostream:61:18: note: 'std::cout' extern ostream cout; /// Linked to standard output ^ palindrommaxim.cpp:7:255: error: 'cout' was not declared in this scope int main() { char s[256] , *p , pal[11]=""; cin.getline(s , 256); p = strtok(s , " .,;:"); bool gasit = false; while(p) { if(palindrom(p)) if(strlen(p) > strlen(pal)) strcpy(pal , p) , gasit = 1; p = strtok(NULL , " .;:,"); } if(gasit) cout << pal; else cout << "IMPOSIBIL"; return 0; } ^ palindrommaxim.cpp:7:255: note: suggested alternative: In file included from palindrommaxim.cpp:1: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 PalindromMaxim 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ă.