#1270
b16
Se dă un număr natural în baza 16
. Să se transforme acest număr în baza 10
.
Problema | b16 | Operații I/O | tastatură/ecran |
---|---|---|---|
Limita timp | 0.1 secunde | Limita memorie |
Total: 64 MB
/
Stivă 8 MB
|
Id soluție | #6954842 | Utilizator | |
Fișier | b16.cpp | Dimensiune | 1.12 KB |
Data încărcării | 16 Noiembrie 2017, 20:04 | Scor / rezultat | Eroare de compilare |
b16.cpp:1:7: error: expected nested-name-specifier before 'System' using System; ^ b16.cpp:1:7: error: 'System' has not been declared b16.cpp:7:26: error: 'string' has not been declared static void Main(string[] args) ^ b16.cpp:7:35: error: expected ',' or '...' before 'args' static void Main(string[] args) ^ b16.cpp:35:5: error: expected ';' after class definition } ^ b16.cpp: In static member function 'static void _26::Program::Main(int*)': b16.cpp:10:17: error: expected unqualified-id before '[' token char[] hexCharArray = new char[20]; ^ b16.cpp:12:13: error: 'Console' was not declared in this scope Console.WriteLine("Introduceti un numar in baza 10"); ^ b16.cpp:13:33: error: expected primary-expression before 'int' int _base10Number = int.Parse(Console.ReadLine()); ^ b16.cpp:20:21: error: 'hexCharArray' was not declared in this scope hexCharArray[digits] = (char)(r + 48); ^ b16.cpp:23:21: error: 'hexCharArray' was not declared in this scope hexCharArray[digits] = (char)(r + 55); ^ b16.cpp:31:31: error: 'hexCharArray' was not declared in this scope Console.Write(hexCharArray[i]); ^
www.pbinfo.ro permite evaluarea a două tipuri de probleme:
Problema b16 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ă.