

1. Problem Statement : We need will generate a random number between 1 to 10000. The user tries to guess the number and keep on guessing until he is correct. For each guess made by the user, we tell him whether his guess was higher than, lower than or equal to the generated number. In the end we also print the number of guesses the user took to find the correct number.
Input : A number between 1 to 10000 (user's guess)
Output : Whether the guess is "higher", "Lower" or "correct".
Test Data :
Number guessed : 10
Input : 100
Output : Higher
Input : 50
Output : Higher
Input : 20
Output Higher
Input : 1
Output : Lower
Input : 10
Output: Correct
Number of guesses = 5
Algorithm :
Create a NOTEPAD or PDF file that restates the problem in your own words, specifies what input is needed, w...
Write a Java program that uses the Monte Carlo method to estimate the value of PI. This method uses the unit circle inscribed in a square with sides of length 2 and random numbers to perform the estimation. The estimation works as follows: • Two random numbers are generated during each iteration of a loop. • The random numbers are each in the range of -1 to 1. One random number is the x-coordinate and the other is the y-coordinate....
Labview question: Create a VI using a While Loop that continuously generates random numbers between 0 and 1000 until it generates a number that matches a number selected by the user. Determine how many random numbers the VI generated before the matching number. conditions to applied on above problem: 1. Convert the “random number” generator floating point numerical output to integer values to make it easier to find a match. 2. The “user selected number control” should be on the...
The program will need to accept two input arguments: the path of the input file and the path of the output file. See etc/cpp/example.ifstream.cpp for the basis of how to do this. Once the input and output file paths have been received, the program will need to open the input and output files, read and process each input file line and create a corresponding output file line, close the input and output files, and then create and output some summary...
Write a PYTHON program that will approximate the value of π. You can do this by computing π to be the ratio of the area of a circle to the area of the square that bounds that circle. Assume a circle of radius 0.5 enclosed by a 1x1 square. The area of the circle then is πr^2=π/4, since r=0.5=1/2 and the area of the square is 1. To approximate the ratio, take a large number of uniformly distributed random points....
last 2pictures are lab7,just need to do the first picture,dont
do the lab 7
Functional π Take the sample solutions for approximating π from labZ and put each solution into its own function. You'll need to decide: 1. What are the inputs that this function requires? 2. What is the output that this function produces? 3. What is an appropriate name for this function? You should create 3 separate functions 1, One that approximates π using the area of a...
Write a program that writes a series of random numbers to a file. Each random number should be in the range of 1 through 500 inclusive. 1.Use a file called randoms.txt as a input file and output file a. If you go to open the file and its not there then ask the user to create the file and then quit 2. Ask the user to specify how many random numbers the file will hold. a.Make sure that the...
Problem 1: Implement an algorithm to generate prime numbers. You will need to implement the following ingredients (some of them you developed for earlier assignments): 1. A method to generate random binary numbers with n-digits (hint: for the most significant digit, you have no choice, it will be 1; similarly, for the least significant digit there is no choice, it will have to be 1; for all other position, generate 0 or 1 at random) 2. A method to compute...
C++ Modify this program (or create your own) so that it performs the following tasks: 1. Insert the numbers into the list in sorted order (ascending). This will require you to keep the list sorted as you continue to insert new numbers. 2. When adding a new number, first check to see whether it is larger than the last number currently in the list. If it is, add it directly to the end of the list, i.e., do not traverse...
Problem 5 . This question considers uniform random points on the unit disc x2+92 〈 1 (a) A point (X, Y) is uniformly chosen in the unit disc. Find the CDF and PDF of its distance from the origin R X2 +Y2 (b) Compute the expected distance from the origin. (c) Determine the marginal PDF of X and Y (d) Are X and Y independent? (Justify your claims) e) One way to generate uniform random points on this disc is...
here is the dice images you need to use
Problem 1/5 (20 points) Create a JavaFX application that simulates the rolling of a pair of dice. When the user clicks a button, the application should generate two random numbers, each in the range of 1 through 6, to represent the value of the dice. Use ImageView component to display the dice. Six images are included in the project folder for you to use. For example, the first picture below is...