ENG  RUSTimus Online Judge
Online Judge
Problems
Authors
Online contests
About Online Judge
Frequently asked questions
Site news
Webboard
Links
Problem set
Submit solution
Judge status
Guide
Register
Update your info
Authors ranklist
Current contest
Scheduled contests
Past contests
Rules
back to board

Common Board

C# - Why compilation error???
Posted by Alexandr 13 Oct 2008 20:16
namespace A_B
{
    class Program
    {
        static void Main()
        {
            System.Double a, b;
            System.Double.TryParse(System.Console.ReadLine(), out a);
            System.Double.TryParse(System.Console.ReadLine(), out b);
            System.Console.WriteLine(a + b);
        }
    }
}
//It work successful on my Visual Studio 2008!

Edited by author 13.10.2008 20:19
You can get the compilation report through the link on “Judge status” page
Posted by Vladimir Yakovlev (USU) 13 Oct 2008 21:31