Sign in to test your solution.
// Square root program
using System;
class Submission
{
// -------------------------
// Subprograms
// -------------------------
static double sqroot(double x)
{
}
// -------------------------
// Main program
// -------------------------
public static void Main(string[] args)
{
Console.WriteLine($"The square root of {num} is {sqroot(num)}");
}
}
You can submit as many times as you like. Only your latest submission will be taken into account.
Sign in to test your solution.