#975
Cuvinte2
Se dă o propoziție formată din litere mici ale alfabetului englez, spații și semnele de punctuație ,.
. Determinați un cuvânt palindrom din propoziție, primul în ordine alfabetică.
Problema | Cuvinte2 | Operații I/O | tastatură/ecran |
---|---|---|---|
Limita timp | 0.1 secunde | Limita memorie |
Total: 64 MB
/
Stivă 8 MB
|
Id soluție | #37884891 | Utilizator | |
Fișier | cuvinte2.cpp | Dimensiune | 992 B |
Data încărcării | 23 Septembrie 2022, 11:37 | Scor / rezultat | Eroare de compilare |
cuvinte2.cpp:1:7: error: expected nested-name-specifier before 'System' using System; ^ cuvinte2.cpp:1:7: error: 'System' has not been declared cuvinte2.cpp:2:7: error: expected nested-name-specifier before 'System' using System.Collections.Generic; ^ cuvinte2.cpp:2:7: error: 'System' has not been declared cuvinte2.cpp:2:13: error: expected ';' before '.' token using System.Collections.Generic; ^ cuvinte2.cpp:2:13: error: expected unqualified-id before '.' token cuvinte2.cpp:3:7: error: expected nested-name-specifier before 'System' using System.Linq; ^ cuvinte2.cpp:3:7: error: 'System' has not been declared cuvinte2.cpp:3:13: error: expected ';' before '.' token using System.Linq; ^ cuvinte2.cpp:3:13: error: expected unqualified-id before '.' token cuvinte2.cpp:4:7: error: expected nested-name-specifier before 'System' using System.Text; ^ cuvinte2.cpp:4:7: error: 'System' has not been declared cuvinte2.cpp:4:13: error: expected ';' before '.' token using System.Text; ^ cuvinte2.cpp:4:13: error: expected unqualified-id before '.' token cuvinte2.cpp:5:7: error: expected nested-name-specifier before 'System' using System.Threading.Tasks; ^ cuvinte2.cpp:5:7: error: 'System' has not been declared cuvinte2.cpp:5:13: error: expected ';' before '.' token using System.Threading.Tasks; ^ cuvinte2.cpp:5:13: error: expected unqualified-id before '.' token cuvinte2.cpp:11:31: error: 'string' has not been declared static bool Palindrom(string e) ^ cuvinte2.cpp:23:26: error: 'string' has not been declared static void Main(string[] args) ^ cuvinte2.cpp:23:35: error: expected ',' or '...' before 'args' static void Main(string[] args) ^ cuvinte2.cpp:38:5: error: expected ';' after class definition } ^ cuvinte2.cpp: In static member function 'static bool p22_975::Program::Palindrom(int)': cuvinte2.cpp:14:26: error: request for member 'Length' in 'e', which is of non-class type 'int' i = 0; j = e.Length - 1; ^ cuvinte2.cpp:17:24: error: invalid types 'int[int]' for array subscript if (e[i] != e[j]) return false; ^ cuvinte2.cpp:17:32: error: invalid types 'int[int]' for array subscript if (e[i] != e[j]) return false; ^ cuvinte2.cpp: In static member function 'static void p22_975::Program::Main(int*)': cuvinte2.cpp:25:13: error: 'string' was not declared in this scope string str; ^ cuvinte2.cpp:25:20: error: expected ';' before 'str' string str; ^ cuvinte2.cpp:26:20: error: expected primary-expression before ']' token string[] cuv; ^ cuvinte2.cpp:26:22: error: expected ';' before 'cuv' string[] cuv; ^ cuvinte2.cpp:27:13: error: 'str' was not declared in this scope str = Console.ReadLine(); ^ cuvinte2.cpp:27:19: error: 'Console' was not declared in this scope str = Console.ReadLine(); ^ cuvinte2.cpp:28:13: error: 'cuv' was not declared in this scope cuv = str.Split(new char[] { ' ' }, StringSplitOptions.RemoveEmptyEntries); ^ cuvinte2.cpp:28:38: error: expected primary-expression before ']' token cuv = str.Split(new char[] { ' ' }, StringSplitOptions.RemoveEmptyEntries); ^ cuvinte2.cpp:28:49: error: 'StringSplitOptions' was not declared in this scope cuv = str.Split(new char[] { ' ' }, StringSplitOptions.RemoveEmptyEntries); ^ cuvinte2.cpp:29:13: error: 'Array' was not declared in this scope Array.Sort(cuv); ^ cuvinte2.cpp:30:29: error: expected ')' before 'e' foreach (string e in cuv) ^ cuvinte2.cpp:30:37: error: 'foreach' was not declared in this scope foreach (string e in cuv) ^ cuvinte2.cpp:31:17: error: expected ';' before 'if' if (Palindrom(e) == true) ^
www.pbinfo.ro permite evaluarea a două tipuri de probleme:
Problema Cuvinte2 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ă.