Flow Control Learn programming with Java exercises

 Java exercises

 57 Positive and negative
Write a Java program to get a number and answer whether it is positive or negative....
 58 Multiply if not zero
Write a Java program to ask the user for a number; if it is not zero, then it will ask for a second number and display their value; otherwise, it will...
 61 Divide if not zero
Write a Java program to ask the user for two numbers, and show their division if the second number is not zero; otherwise, it will display "I cannot d...
 62 Divide if not zero (Using else)
Create a version of the previous program, using "else"...
 60 Greatest of three numbers
Write a Java program to get three numbers from the user and display the greatest one....
 40 Repeat until 0
Create a Java program to ask the user for a number "x" and display 10*x. It must repeat until the user enters 0 (using "while")....
 66 Repeat until 0 (Use Do While)
Create a Java program to ask the user for a number "x" and display 10*x. It must repeat until the user enters 0 (using "do-while")....
 52 While + Counter
Create a Java program to display the numbers 1 to 10 on screen, using "while"....
 80 Multiplication table (use while)
Write a Java program to ask the user for a number and display its multiplication table, using a "while"...
 67 Odd numbers descending
Create a Java program to display on the screen the odd numbers from 15 to 7 (downwards), using "while"...
 60 Sum numbers
Write a Java program to ask the user for an undetermined amount of numbers (until 0 is entered) and display their sum, as follows: Number? 5 Total...
 52 Two negative numbers
Create a Java program to accept two numbers from the user and answer if both are negative or not....
 67 One or two negative numbers
Create a Java program to accept two numbers from the user and answer if both are negative, if only one is, or if none of them is....
 49 Multiples
Create a Java program to write on screen the numbers from 1 to 500 that are multiples of 3 and also multiples of 5 (hint: use the remainder of the div...
 51 Number repeated
Write a Java program which asks for a number and an amount, and shows that number repeated as many times as the user has indicated, as in the followin...
 66 Password
Write a Java program to ask the user for his/her login and his/her password (both must be integer numbers) and repeat it as many times as necessary, u...
 55 Password V2
Write a Java program to ask the user for his/her login and his/her password (both must be integer numbers), until the entered login is "12" and the pa...
 63 Many divisions
Write a Java program to ask the user for two numbers and show their division and the remainder of the division. It will warn if 0 is entered as second...
 80 Several multiplication tables, (use do while)
Display the multiplication tables from 2 to 6, using nested "do...while"....
 63 Square
Write a Java program which asks for a number and a width, and displays a square of that width, using that number for the inner symbol, as in this exam...
 78 Break & continue
Create a Java program to write the even numbers from 10 to 20, both included, except 16, in 3 different ways: - Incrementing 2 in each step (use "c...
 59 Rectangle V2
Write a Java program which asks for a number, a width and a height and displays a rectangle of that width and that height, using that number for the i...
 54 Repetitive structures
Create a Java program to ask the user for two numbers and display the numbers between them (both included), three times: using "for", using "while" an...
 62 Digits in a number
Create a Java program to calculate how many digits has a positive integer (hint: it can be done by dividing by 10 several times). If the user enters a...
 63 Hollow square
Write a program which asks for a symbol, a width and displays a hollow square of that width, using that number for the outer symbol, as in this exampl...
 66 Product
Create a Java program which asks the user for two integer numbers and displays their multiplication, but not using "*". You must use consecutive sums....
 56 Absolute value
Write a Java program to calculate (and display) the absolute value of a number x: if the number is positive, its absolute value is exactly the number ...
 56 Hollow rectangle
Write a program which asks for a symbol, a width and a height and displays a hollow rectangle of that width and that height, using that number for the...
 67 Statistics
Exercise 2.29: Statistics Objetive: Write a program to compute several basic statistical operations: it will accept numbers from the user and sho...
 82 Switch
Create a program in Java to display the "text mark" corresponding to a certain "numeric mark", using the following equivalence: 9.10 = Outstanding ...
 102 Conditional operator, positive & smaller
Create a Java program which asks the user for two numbers and answers, using the conditional operator (?), the following: - If the first number is ...
 60 Prime number
Write a Java program which asks the user for an integer number and answers if it is a prime number or not....
 64 Give change
Create a Java program to return the change of a purchase, using coins (or bills) as large as possible. Assume we have an unlimited amount of coins (or...
 58 Exceptions
Create a Java program to ask the user for two numbers and display their division. Errors must be trapped using "try..catch"....