Ask the user for a number between 2 and 1000. Calculate the integer square root by calculating

profileadelen
 (Not rated)
 (Not rated)
Chat

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;
    • 11 years ago
    the answer
    NOT RATED

    Purchase the answer to view it

    blurred-text
    • attachment
      the-code.zip