Sunday, May 24, 2009

Exercise

/* Custom Project and Libraries Copyright, 2006. Venkat, ISS */

using System;
using System.Collections.Generic;
using System.Text;
using ISS.RV.LIB;

namespace Prog00
{
class exe5
{
static void Main()
{
// Write the Main Program for exer2 here...
double d,A;

Console.WriteLine("Enter a number:" + "\t");
d = ISSConsole.ReadDouble();
A= Math.Sqrt(d);
Console.WriteLine("the result is {0:###.##}",A);


}
}
}

No comments:

Post a Comment