#1873
cuvinte_pare
Scrieți un program C/C++ care citește de la tastatură un text și îl transformă în memorie prin înlocuirea fiecărui cuvânt format din număr par de litere cu simbolul #
.
Problema | cuvinte_pare | Operații I/O | tastatură/ecran |
---|---|---|---|
Limita timp | 0.1 secunde | Limita memorie |
Total: 64 MB
/
Stivă 8 MB
|
Id soluție | #43380595 | Utilizator | |
Fișier | cuvinte_pare.cpp | Dimensiune | 405 B |
Data încărcării | 23 Aprilie 2023, 13:33 | Scor / rezultat | Eroare de compilare |
cuvinte_pare.cpp:3:7: error: expected nested-name-specifier before 'namesapce' using namesapce std; ^ cuvinte_pare.cpp:3:7: error: 'namesapce' has not been declared cuvinte_pare.cpp:3:17: error: expected ';' before 'std' using namesapce std; ^ cuvinte_pare.cpp:3:17: error: 'std' does not name a type cuvinte_pare.cpp: In function 'int main()': cuvinte_pare.cpp:5:23: error: array must be initialized with a brace-enclosed initializer int s[101],t[101]="",*p,ok=0; ^ cuvinte_pare.cpp:6:5: error: 'cin' was not declared in this scope cin.getline(s,101); ^ cuvinte_pare.cpp:6:5: note: suggested alternative: In file included from cuvinte_pare.cpp:1:0: /usr/include/c++/4.8/iostream:60:18: note: 'std::cin' extern istream cin; /// Linked to standard input ^ cuvinte_pare.cpp:7:19: error: cannot convert 'int*' to 'char*' for argument '1' to 'char* strtok(char*, const char*)' p=strtok(s," "); ^ cuvinte_pare.cpp:9:20: error: cannot convert 'int*' to 'const char*' for argument '1' to 'size_t strlen(const char*)' if(strlen(p)%2==0) strcat(t,"# "); ^ cuvinte_pare.cpp:9:41: error: cannot convert 'int*' to 'char*' for argument '1' to 'char* strcat(char*, const char*)' if(strlen(p)%2==0) strcat(t,"# "); ^ cuvinte_pare.cpp:11:23: error: cannot convert 'int*' to 'char*' for argument '1' to 'char* strcat(char*, const char*)' strcat(t,p); ^ cuvinte_pare.cpp:12:25: error: cannot convert 'int*' to 'char*' for argument '1' to 'char* strcat(char*, const char*)' strcat(t," "); ^ cuvinte_pare.cpp:14:10: error: cannot convert 'char*' to 'int*' in assignment p=strtok(NULL," "); ^ cuvinte_pare.cpp:16:15: error: cannot convert 'int*' to 'const char*' for argument '1' to 'size_t strlen(const char*)' t[strlen(t)-1]='\0'; ^ cuvinte_pare.cpp:17:15: error: cannot convert 'int*' to 'char*' for argument '1' to 'char* strcpy(char*, const char*)' strcpy(s,t); ^ cuvinte_pare.cpp:18:5: error: 'cout' was not declared in this scope cout<<s; ^ cuvinte_pare.cpp:18:5: note: suggested alternative: In file included from cuvinte_pare.cpp:1:0: /usr/include/c++/4.8/iostream:61:18: note: 'std::cout' extern ostream cout; /// Linked to standard output ^ cuvinte_pare.cpp:5:29: warning: unused variable 'ok' [-Wunused-variable] int s[101],t[101]="",*p,ok=0; ^
www.pbinfo.ro permite evaluarea a două tipuri de probleme:
Problema cuvinte_pare 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ă.