Using Figure 6-10 on page 293 as a guide, use NetBeans IDE and write a CLI application that does following:
Ask for a number between 1-5 from user .
You pick one number from 1-5 and use it as the correct number:
If the user specified number is not correct, output the incorrect number and ask the user to enter it again.
If the user specified number is correct, output the correct number, thank the user for participating, and terminate the program. .
Finally, take a screenshot of your CLI outputs and then submit it along with your zipped NetBeans project folder of this exercise to e-Learning.

![Creating while Loops art java.util.Scanner: c class EnterSmallValue Wic static void main(String[] args) int userEntry: final](http://img.homeworklib.com/questions/6b6a8e80-79a7-11ec-904b-b7d8a5c40a4b.png?x-oss-process=image/resize,w_560)


Code:
import java.util.Scanner;
import java.util.Random;
public class EnterSmallValue
{
public static void main(String [] args)
{
int userEntry;
Scanner input = new
Scanner(System.in);
System.out.println("Please enter an
integer between 1 - 5");
Random r = new Random();
int correctNumber = r.nextInt(5)
+ 1;
userEntry = input.nextInt();
while(userEntry !=
correctNumber)
{
System.out.println("The number :" + userEntry + " you entered was
not correct. Try again ");
System.out.println("Please enter an integer between 1 - 5");
userEntry =
input.nextInt();
}
System.out.println("The correct
number is " +userEntry);
System.out.println("Thanks for
participating");
}
}
Using Figure 6-10 on page 293 as a guide, use NetBeans IDE and write a CLI application that does following:
Using Java IDE: Write an application that asks elementary students a set of 10 math problems ● First ask the user for a level and a problem type. ● You need to validate the level and problem type and loop until the user enters a correct one. ● There should be 3 levels. Level 1 operands would have values in the range of 0-9, level 2 operands would have values in the range of 0-99, and level 3 operands would...
Write In JAVA: Part 1 The use of computers in education is referred to as computer-assisted instruction (CAI). Write a program that will help an elementary school student learn multiplication. Use a SecureRandom object to produce two positive one-digit integers (you will need to look up how to do this). The program should then prompt the user with a question, such as How much is 6 times 7? The student then inputs the answer. Next, the program checks the student’s...
IN BASIC JAVA and using JAVA.UTIL.RANDOM write a program will randomly pick a number between one and 100. Then it will ask the user to make a guess as to what the number is. If the guess is incorrect, but is within the range of 1 to 100, the user will be told if it is higher or lower and then asked to guess again. If the guess was outside the valid range or not readable by Scanner class, a...
Use C++
For this week’s lab you will write a program to read a data file
containing numerical values, one per line. The program should
compute average of the numbers and also find the smallest and the
largest value in the file. You may assume that the data file will
have EXACTLY 100 integer values in it. Process all the values out
of the data file. Show the average, smallest, largest, and the name
of the data file in the...
So I can not get this to work properly and he does not want us using an array list. Below is the directions along with the code I have(Im not sure the code is in the right format) ITSE 2321 – OBJECT-ORIENTED PROGRAMMING JAVA Program 7 – Methods: A Deeper Look Write a program that will help an elementary school student learn multiplication. Use a SecureRandom object to produce two positive one-digit integers. The program should then prompt the student...
Advanced Object-Oriented Programming using
Java
Assignment 4: Exception Handling and Testing in
Java
Introduction - This assignment is
meant to introduce you to design and implementation of
exceptions in an object-oriented language. It will
also give you experience in testing an
object-oriented support class.
You will be designing and implementing a version of the game
Nim. Specifically, you will design and implement a
NimGame support class that stores all actual
information about the state of the game, and detects and throws...
If you’re using Visual Studio Community 2015, as requested, the instructions below should be exact but minor discrepancies may require you to adjust. If you are attempting this assignment using another version of Visual Studio, you can expect differences in the look, feel, and/or step-by-step instructions below and you’ll have to determine the equivalent actions or operations for your version on your own. INTRODUCTION: In this assignment, you will develop some of the logic for, and then work with, the...
You need not run Python programs on a computer in solving the following problems. Place your answers into separate "text" files using the names indicated on each problem. Please create your text files using the same text editor that you use for your .py files. Answer submitted in another file format such as .doc, .pages, .rtf, or.pdf will lose least one point per problem! [1] 3 points Use file math.txt What is the precise output from the following code? bar...
Please to indent and follow structure!!!!!
Assignment 3 - The card game: War Due Date: June 9th, 2018 @
23:55
Percentage overall grade: 5% Penalties: No late assignments
allowed
Maximum Marks: 10
Pedagogical Goal: Refresher of Python and hands-on experience
with algorithm coding, input validation, exceptions, file reading,
Queues, and data structures with encapsulation.
The card game War is a card game that is played with a deck of
52 cards. The goal is to be the first player to...