#136
NumarareCuvinte
Să se scrie un program care citește o propoziție și determină numărul de cuvinte care încep și se termină cu vocală.
Variante Bacalaureat 2009
Problema | NumarareCuvinte | Operații I/O | tastatură/ecran |
---|---|---|---|
Limita timp | 0.1 secunde | Limita memorie |
Total: 64 MB
/
Stivă 8 MB
|
Id soluție | #38505723 | Utilizator | |
Fișier | numararecuvinte.cpp | Dimensiune | 1.05 KB |
Data încărcării | 12 Octombrie 2022, 08:18 | Scor / rezultat | Eroare de compilare |
numararecuvinte.cpp:1:7: error: expected nested-name-specifier before 'System' using System; ^ numararecuvinte.cpp:1:7: error: 'System' has not been declared numararecuvinte.cpp:2:7: error: expected nested-name-specifier before 'System' using System.Collections.Generic; ^ numararecuvinte.cpp:2:7: error: 'System' has not been declared numararecuvinte.cpp:2:13: error: expected ';' before '.' token using System.Collections.Generic; ^ numararecuvinte.cpp:2:13: error: expected unqualified-id before '.' token numararecuvinte.cpp:3:7: error: expected nested-name-specifier before 'System' using System.Linq; ^ numararecuvinte.cpp:3:7: error: 'System' has not been declared numararecuvinte.cpp:3:13: error: expected ';' before '.' token using System.Linq; ^ numararecuvinte.cpp:3:13: error: expected unqualified-id before '.' token numararecuvinte.cpp:4:7: error: expected nested-name-specifier before 'System' using System.Text; ^ numararecuvinte.cpp:4:7: error: 'System' has not been declared numararecuvinte.cpp:4:13: error: expected ';' before '.' token using System.Text; ^ numararecuvinte.cpp:4:13: error: expected unqualified-id before '.' token numararecuvinte.cpp:5:7: error: expected nested-name-specifier before 'System' using System.Threading.Tasks; ^ numararecuvinte.cpp:5:7: error: 'System' has not been declared numararecuvinte.cpp:5:13: error: expected ';' before '.' token using System.Threading.Tasks; ^ numararecuvinte.cpp:5:13: error: expected unqualified-id before '.' token numararecuvinte.cpp:12:30: error: 'string' has not been declared static bool hasVowls(string word) ^ numararecuvinte.cpp:23:26: error: 'string' has not been declared static void Main(string[] args) ^ numararecuvinte.cpp:23:35: error: expected ',' or '...' before 'args' static void Main(string[] args) ^ numararecuvinte.cpp:32:5: error: expected ';' after class definition } ^ numararecuvinte.cpp: In static member function 'static bool p136::Program::hasVowls(int)': numararecuvinte.cpp:14:29: error: invalid types 'int[int]' for array subscript char fl = word[0], ll = word[word.Length - 1]; ^ numararecuvinte.cpp:18:18: error: 'll' was not declared in this scope (ll == 'a' || ll == 'e' || ll == 'i' || ll == 'o' || ll == 'u' ^ numararecuvinte.cpp: In static member function 'static void p136::Program::Main(int*)': numararecuvinte.cpp:26:13: error: 'string' was not declared in this scope string line = Console.ReadLine(); ^ numararecuvinte.cpp:26:20: error: expected ';' before 'line' string line = Console.ReadLine(); ^ numararecuvinte.cpp:27:20: error: expected primary-expression before ']' token string[] cuv = line.Split(new char[] { ' ' }, StringSplitOptions.RemoveEmptyEntries); ^ numararecuvinte.cpp:27:22: error: expected ';' before 'cuv' string[] cuv = line.Split(new char[] { ' ' }, StringSplitOptions.RemoveEmptyEntries); ^ numararecuvinte.cpp:27:57: error: expected primary-expression before ',' token string[] cuv = line.Split(new char[] { ' ' }, StringSplitOptions.RemoveEmptyEntries); ^ numararecuvinte.cpp:27:59: error: 'StringSplitOptions' was not declared in this scope string[] cuv = line.Split(new char[] { ' ' }, StringSplitOptions.RemoveEmptyEntries); ^ numararecuvinte.cpp:27:96: error: expected ';' before ')' token string[] cuv = line.Split(new char[] { ' ' }, StringSplitOptions.RemoveEmptyEntries); ^ numararecuvinte.cpp:28:29: error: expected ')' before 'word' foreach (string word in cuv) ^ numararecuvinte.cpp:28:40: error: 'foreach' was not declared in this scope foreach (string word in cuv) ^ numararecuvinte.cpp:29:17: error: expected ';' before 'if' if (hasVowls(word)) cnt++; ^ numararecuvinte.cpp:30:13: error: 'Console' was not declared in this scope Console.WriteLine(cnt); ^
www.pbinfo.ro permite evaluarea a două tipuri de probleme:
Problema NumarareCuvinte 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ă.