
Concept explainers
1. Generate a number of random integer values within a given range
Requirements:
- Ask the user the following info:
a. How many random numbers they would like to have
b. What is the upper and lower limit (e.g. range)?
- Generate that many random numbers within that given range
- Do not accept negative values for the count, lower or upper limit
Help: Here is a simple example on how to generate one random number
#include <iostream>
#include <ctime>
using namespace std;
int main()
{
/* get the current system time and use it as the seed to generate*/
srand( time(0) ) ;
/* retrieve the next random number */
int num = rand() ;
/* print it out */
cout << "Random number: " << num << endl;
return 0 ;
}
Note: you need to call "srand" only once (e.g. not inside a loop).
Extend your random generating
If the count is greater than the range, the program will print out an error message because it is not possible to generate that many unique numbers.
Hint: use the array to check whether the number has been generated.
Write a function "WantToContinue" that will accept one-character answer.
It will return true if the answer is 'Y' or 'y' and false otherwise.
Use this function in the above program to continue the next set of random numbers as long as the user wants to continue.
in c++

Trending nowThis is a popular solution!
Step by stepSolved in 3 steps with 1 images

- Can you please fix the code ? see picture for error thank youarrow_forwardA Java for loop has the following general form: for(start; test; increment) { statements } in the parentheses after the keyword "for", _____ provides the starting point for the loop, _____tells what to adjust before the next loop iteration, and _____ is a boolean expression that when true, lets the loop to continue and when false, causes the loop to terminate.arrow_forward• Use a while loop • Use multiple loop controlling conditions • Use a boolean method • Use the increment operator • Extra credit: Reuse earlier code and call two methods from main Details: This assignment will be completed using the Eclipse IDE. Cut and paste your code from Eclipse into the Assignment text window. This is another password program. In this case, your code is simply going to ask for a username and password, and then check the input against four users. The program will give the user three tries to input the correct username-password combination. There will be four acceptable user-password combinations: • alpha-alpha1 • beta-beta1 • gamma-gamma1 • delta - delta1 If the user types in one of the correct username-password combinations, then the program will output: "Login successful." Here are a couple of example runs (but your code needs to work for all four user-password combinations): Username: beta Type your current password: beta1 Login successful. Username: delta Type…arrow_forward
- Write a code segment that searches a Grid object for a negative integer. The loop should terminate at the first instance of a negative integer in the grid, and the variables row and column should be set to the position of that integer. Otherwise, the variables row and column should equal the number of rows and columns in the grid. *Pythonarrow_forwardQ3- What is the memory content for the following data section variables? L1 db OAAh, 0BBH L2 dw OCCDDH L3 db 0EEh, OFFH L1 L2 L3arrow_forwardPendant Publishing edits multi-volume manuscripts for many authors. For each volume, they want a label that contains the author’s name, the title of the work, and a volume number in the form Volume 9 of 9. For example, a set of three volumes requires three labels: Volume 1 of 3, Volume 2 of 3, and Volume 3 of 3. Design an application that reads records that contain an author’s name, the title of the work, and the number of volumes. The application must read the records until eof is encountered and produce enough labels for each work. The flowchart must include a call symbol, at the beginning, to redirect the input to the external data file. create a solution algorithm using pseudocode create a flowchart using RAPTORarrow_forward
- uppose you have a certain amount of money in a savings account that earns compoundmonthly interest, and you want to calculate the amount that you will have after a specificnumber of months. The formula, which is known as the future value formula, is:F=P×(1+i)tThe terms in the formula are as follows:o F is the future value of the account after the specified time period.o P is the present value of the account.o i is the monthly interest rate.o t is the number of months.Write a program that prompts the user to enter the account’s present value, monthlyinterest rate, and the number of months that the money will be left in the account. Theprogram should pass these values to a function named futureValue that returns thefuture value of the account, after the specified number of months. The program shoulddisplay the account’s future value. i attached the screenshot of the output so the output should look like that. the coding should be in c++arrow_forwardIn Python FormA. Create a sorted_grades application that can store up to 10 grades in order from highest to lowest in a list. The application should display a menu of options, which include “Enter a grade”, “Delete a grade”, “Display lowest grade”, “Display highest grade”, “Show grades”, and “Quit”. The list should initially contain all zeros (0).The algorithm for entering a grade is similar to:1. Find the appropriate position for the grade so that all grades are still in order from highest to lowest.2. Insert the grade3. Make certain that length of list remains the sameThe algorithm for deleting a grade is similar to:1. Find the element containing the grade to delete.2. If list empty tell user they can’ delete and if grade doesn’t exist, inform user no grade has been found.3. Use del function. Make certain the length doesn’t change and last element =0arrow_forwardHow do you make a username password generator in pythonarrow_forward
- I know you guys are using AI. Don't you dare give me AI generated answer. This is warning ⚠️arrow_forwardhelp finish the code of the provided code.arrow_forwardshow: Lists the items that the wizard is currently carrying along with the index for each item and the weight of that item. See sample runs below. As shown in the sample this function also prints the total weight of the items along with the max weight limit of 100 lbs. Hint: You can use the sum function in Python to calculate the sum of weights. E.g. sum(weights) will return the sum of all the items in the weights list. grab_item: Add a new item while enforcing the following policy: There is a limit of 4 on the number of items the wizard can carry and limit of 100 lbs on the total weight the wizard can carry. So specifically, if the wizard is already carrying 4 items, print message that “You can't carry anymore items. Drop something first.” And return out of the function. Otherwise prompt the user for the name and the weight of the new item. Next check whether with the addition of the new item, the total weight will exceed the limit of 100 lbs. If so, print a message saying weight…arrow_forward
- Database System ConceptsComputer ScienceISBN:9780078022159Author:Abraham Silberschatz Professor, Henry F. Korth, S. SudarshanPublisher:McGraw-Hill EducationStarting Out with Python (4th Edition)Computer ScienceISBN:9780134444321Author:Tony GaddisPublisher:PEARSONDigital Fundamentals (11th Edition)Computer ScienceISBN:9780132737968Author:Thomas L. FloydPublisher:PEARSON
- C How to Program (8th Edition)Computer ScienceISBN:9780133976892Author:Paul J. Deitel, Harvey DeitelPublisher:PEARSONDatabase Systems: Design, Implementation, & Manag...Computer ScienceISBN:9781337627900Author:Carlos Coronel, Steven MorrisPublisher:Cengage LearningProgrammable Logic ControllersComputer ScienceISBN:9780073373843Author:Frank D. PetruzellaPublisher:McGraw-Hill Education





