Question: C# using System; namespace MathFunctions { Program { static void Main(string[] args) { Random r = new Random(); int a = r.Next(100); Console.WriteLine(The square root

C#

using System;

namespace MathFunctions

{

Program

{ static void Main(string[] args)

{ Random r = new Random();

int a = r.Next(100);

Console.WriteLine("The square root of " + a + " is " + Math.Sqrt(a));

int b = r.Next(10);

int c = r.Next(10);

Console.WriteLine(b + " to the power of " + c + " is " + Math.Pow(b,c)); } } }

2. Replace the Math.Sqrt and Math.Pow functions with two method from the listed in the following link: Math Class (System) | Microsoft LearnLinks to an external site. At least one of the methods you use should have multiple inputs like Math.Pow.

Step by Step Solution

There are 3 Steps involved in it

1 Expert Approved Answer
Step: 1 Unlock blur-text-image
Question Has Been Solved by an Expert!

Get step-by-step solutions from verified subject matter experts

Step: 2 Unlock
Step: 3 Unlock

Students Have Also Explored These Related Databases Questions!