Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- using System;
- namespace _04._Variable_in_Hex_Format
- {
- class Program
- {
- static void Main(string[] args)
- {
- string readXex = Console.ReadLine();
- int number = Convert.ToInt32(readXex, 16);
- Console.WriteLine($"{number}");
- }
- }
- }
Advertisement
Add Comment
Please, Sign In to add comment