Ask Question
28 June, 23:30

Write a main method that prompts the user for an integer between 1 & 10 (inclusive). If the user enters an invalid number, prompt for another one. When a valid number is entered, call activity with that number as a parameter.

+3
Answers (1)
  1. 29 June, 02:37
    0
    int main () {

    int n;

    cout<<"Enter the integer n"<
    cin>>n;

    if (n10)

    {

    while (n>10 || n<1) / /taking input if the number is not within range ...

    {

    cout<<"Enter the number again"<
    cin>>n;

    }

    activity (n); //calling activity with the n ...

    }

    return 0;

    }

    Explanation:

    Above written is the main function in which a prompting an integer between 1 and 10 if it is not within range then again taking input. Then after that calling activity with n as argument.
Know the Answer?
Not Sure About the Answer?
Find an answer to your question ✅ “Write a main method that prompts the user for an integer between 1 & 10 (inclusive). If the user enters an invalid number, prompt for ...” in 📘 Computers and Technology if you're in doubt about the correctness of the answers or there's no answer, then try to use the smart search and find answers to the similar questions.
Search for Other Answers