Advertisement
tmollov

Untitled

Jan 23rd, 2017
275
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.34 KB | None | 0 0
  1. using System;
  2. using System.Numerics;
  3.  
  4. namespace Excersize
  5. {
  6. class Program
  7. {
  8. static void Main(string[] args)
  9. {
  10. int number = int.Parse(Console.ReadLine());
  11. Console.WriteLine(Convert.ToString(number,16).ToUpper());
  12. Console.WriteLine(Convert.ToString(number, 2));
  13. }
  14. }
  15. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement