Skip to content

Commit

Permalink
Create README.md
Browse files Browse the repository at this point in the history
  • Loading branch information
Mechoboy90 committed May 25, 2016
1 parent 405d5ac commit 771d919
Showing 1 changed file with 20 additions and 0 deletions.
20 changes: 20 additions & 0 deletions README.md
@@ -0,0 +1,20 @@
# Palindromes
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;


class Program
{
    static void Main(string[] args)
    {
        string a = "0xFE";
        string b = "0x37";
        string c = "0x10";
        Console.WriteLine(Convert.ToInt32(a, 16));
        Console.WriteLine(Convert.ToInt32(b, 16));
        Console.WriteLine(Convert.ToInt32(c, 16));
    }
}

0 comments on commit 771d919

Please sign in to comment.