Calculate the integer square root by


Calculate the integer square root by calculating

Ask the user for a number between 2 and 1000. Calculate the integer square root by calculating the square of every number from 1 until the square of the number is more than the number entered. The previous number is the integer square root. For example, if the user enters 15, your program would calculate 1x1 = 1, 2x2 = 4, 3x3 = 9, 4x4 = 16 -- since 16 is too high, the integer square root of 15 is 3.

YOU MUST write a function called intSqrRoot which calculates the answer and returns it to main; call it as follows:

answer = intSqrRoot(num);

cout << "The integer square root of ";

cout << num;

cout << " is ";

cout << answer;

cout << ".";

cout << endl;

Request for Solution File

Ask an Expert for Answer!!
C/C++ Programming: Calculate the integer square root by
Reference No:- TGS01100589

Expected delivery within 24 Hours