[SOLVED] Ask the user for a number between 3 and 100 (CPP)

10.00 $

Category:
Click Category Button to View Your Next Assignment | Homework

You will receive the following solution file(s) instantly after successful payment:

zip file icon Answer-1-1.zip (0.4 KB)
Assignment Instructions Updated Recently? Submit Below and we will provide new Solution!
Submit New Instructions
đź”’ Securely Powered by:
Secure Checkout
5/5 - (2 votes)

Ask the user for a number between 3 and 100 (inclusive). USING LOOPS, figure out what is the largest power of 2 that is less than or equal to the number entered. For example, if the user entered 6, answer would be 4. If the user entered 100, the answer would be 64. You must do this within a function called powerOfTwo. For example:

Please enter a number from 3 to 100: 100
The answer is 64

Please only edit code where is says “/* Type your code here. */”

#include
#include
using namespace std;

/* Type your code here. */

int main()
{
int num;
cout cin num;
cout if ((num 100))
cout else {
int answer = powerOfTwo(num);
cout }
}

  • Answer-1-1.zip