Using C++ Language In this program you will write a function of void return type named compare that accepts an integer parameter named guess. This function will compare the value of guess with a seeded randomly generated integer between 1 to 100, inclusive, and let the user know what the random number was as well as whether the guess was larger than, smaller than or equal to the random number. NOTE THAT: You will NOT generate a random number inside the compare function. Rather, you will write another function named getRandom of int return type to do it. You will need to call getRandom from compare, no parameters are necessary. Inside your main function, get the guess from user and pass it to the compare function.    Code: #include using namespace std; int getRandom() {     //generate seeded random num.     //in between 1-100 inclusive     //return random number } void compare(int guess) {     //call getRandom     //compare guess with random number     //inform user what random num was     //was it greater than, equal to, or less than guess? } int main() {     int guess;     //get value of guess from user     //call compare and pass guess as parameter     return 0; }

Database System Concepts
7th Edition
ISBN:9780078022159
Author:Abraham Silberschatz Professor, Henry F. Korth, S. Sudarshan
Publisher:Abraham Silberschatz Professor, Henry F. Korth, S. Sudarshan
Chapter1: Introduction
Section: Chapter Questions
Problem 1PE
icon
Related questions
Question

Using C++ Language

In this program you will write a function of void return type named compare that
accepts an integer parameter named guess. This function will compare the value of
guess with a seeded randomly generated integer between 1 to 100, inclusive, and let
the user know what the random number was as well as whether the guess was larger
than, smaller than or equal to the random number.

NOTE THAT: You will NOT generate a random number inside the compare function.
Rather, you will write another function named getRandom of int return type to do it.
You will need to call getRandom from compare, no parameters are necessary.

Inside your main function, get the guess from user and pass it to the compare
function. 

 

Code:

#include <iostream>
using namespace std;

int getRandom()
{
    //generate seeded random num.
    //in between 1-100 inclusive
    //return random number

}

void compare(int guess)
{
    //call getRandom
    //compare guess with random number
    //inform user what random num was
    //was it greater than, equal to, or less than guess?
}

int main()
{
    int guess;
    //get value of guess from user
    //call compare and pass guess as parameter
    return 0;
}

Expert Solution
trending now

Trending now

This is a popular solution!

steps

Step by step

Solved in 3 steps with 2 images

Blurred answer
Knowledge Booster
Function Arguments
Learn more about
Need a deep-dive on the concept behind this application? Look no further. Learn more about this topic, computer-science and related others by exploring similar questions and additional content below.
Similar questions
  • SEE MORE QUESTIONS
Recommended textbooks for you
Database System Concepts
Database System Concepts
Computer Science
ISBN:
9780078022159
Author:
Abraham Silberschatz Professor, Henry F. Korth, S. Sudarshan
Publisher:
McGraw-Hill Education
Starting Out with Python (4th Edition)
Starting Out with Python (4th Edition)
Computer Science
ISBN:
9780134444321
Author:
Tony Gaddis
Publisher:
PEARSON
Digital Fundamentals (11th Edition)
Digital Fundamentals (11th Edition)
Computer Science
ISBN:
9780132737968
Author:
Thomas L. Floyd
Publisher:
PEARSON
C How to Program (8th Edition)
C How to Program (8th Edition)
Computer Science
ISBN:
9780133976892
Author:
Paul J. Deitel, Harvey Deitel
Publisher:
PEARSON
Database Systems: Design, Implementation, & Manag…
Database Systems: Design, Implementation, & Manag…
Computer Science
ISBN:
9781337627900
Author:
Carlos Coronel, Steven Morris
Publisher:
Cengage Learning
Programmable Logic Controllers
Programmable Logic Controllers
Computer Science
ISBN:
9780073373843
Author:
Frank D. Petruzella
Publisher:
McGraw-Hill Education