#4316
Cifre18
Să se scrie un program care citește un număr natural n
și o valoare nenulă k
, cel mult egală cu numărul de cifre ale lui n
. Să se mărească a k
cifră din n
cu 1
dacă este mai mică decât 9
și să se înlocuiască cu 0
în caz contrar.
Problema | Cifre18 | Operații I/O | tastatură/ecran |
---|---|---|---|
Limita timp | 0.1 secunde | Limita memorie |
Total: 64 MB
/
Stivă 8 MB
|
Id soluție | #43558302 | Utilizator | |
Fișier | cifre18.cpp | Dimensiune | 1.57 KB |
Data încărcării | 03 Mai 2023, 13:55 | Scor / rezultat | Eroare de compilare |
cifre18.cpp:1:7: error: expected nested-name-specifier before 'System' using System; ^ cifre18.cpp:1:7: error: 'System' has not been declared cifre18.cpp:21:16: error: expected ':' before 'numere' public numere(int val) ^ cifre18.cpp:25:16: error: expected ':' before 'numere' public numere() ^ cifre18.cpp:29:16: error: expected ':' before 'numere' public numere(numere x) ^ cifre18.cpp:29:31: error: invalid constructor; you probably meant 'ConsoleApp3::numere (const ConsoleApp3::numere&)' public numere(numere x) ^ cifre18.cpp:33:16: error: expected ':' before 'void' public void afisare() ^ cifre18.cpp:37:16: error: expected ':' before 'void' public void modificnr(int k, out int nrnou) ^ cifre18.cpp:37:38: error: 'out' has not been declared public void modificnr(int k, out int nrnou) ^ cifre18.cpp:37:46: error: two or more data types in declaration of 'nrnou' public void modificnr(int k, out int nrnou) ^ cifre18.cpp:58:30: error: 'string' has not been declared static void Main(string[] args) ^ cifre18.cpp:58:39: error: expected ',' or '...' before 'args' static void Main(string[] args) ^ cifre18.cpp:68:9: error: expected ';' after class definition } ^ cifre18.cpp:69:5: error: expected ';' after class definition } ^ cifre18.cpp: In member function 'void ConsoleApp3::numere::afisare()': cifre18.cpp:35:13: error: 'Console' was not declared in this scope Console.WriteLine(n); ^ cifre18.cpp: In member function 'void ConsoleApp3::numere::modificnr(...)': cifre18.cpp:39:37: error: request for member 'n' in 'this', which is of pointer type 'ConsoleApp3::numere* const' (maybe you meant to use '->' ?) int d, p = 1, cn = this.n, cc = cntcif(); ^ cifre18.cpp:40:17: error: 'cc' was not declared in this scope d = cc - k; ^ cifre18.cpp:40:22: error: 'k' was not declared in this scope d = cc - k; ^ cifre18.cpp:41:13: error: 'nrnou' was not declared in this scope nrnou = 0; ^ cifre18.cpp: In static member function 'static void ConsoleApp3::numere::Program::Main(int*)': cifre18.cpp:60:17: error: 'string' was not declared in this scope string sir = Console.ReadLine(); ^ cifre18.cpp:60:24: error: expected ';' before 'sir' string sir = Console.ReadLine(); ^ cifre18.cpp:61:24: error: expected primary-expression before ']' token string[] v = sir.Split(' '); ^ cifre18.cpp:61:26: error: expected ';' before 'v' string[] v = sir.Split(' '); ^ cifre18.cpp:62:25: error: expected primary-expression before 'int' int n = int.Parse(v[0]); ^ cifre18.cpp:63:25: error: expected primary-expression before 'int' int k = int.Parse(v[1]); ^ cifre18.cpp:64:41: error: invalid conversion from 'ConsoleApp3::numere*' to 'int' [-fpermissive] numere ob = new numere(n); ^ cifre18.cpp:21:16: error: initializing argument 1 of 'ConsoleApp3::numere::numere(int)' [-fpermissive] public numere(int val) ^ cifre18.cpp:65:33: error: 'out' was not declared in this scope ob.modificnr(k, out n); ^ cifre18.cpp:66:17: error: 'Console' was not declared in this scope Console.WriteLine(n); ^
www.pbinfo.ro permite evaluarea a două tipuri de probleme:
Problema Cifre18 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ă.