Learn C# Sharp
Learn VB.net
Flow Control
Learn programming Java
Java
exercises
54
Positive and negative
Write a Java program to get a number and answer whether it is positive or negative....
56
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...
60
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...
61
Divide if not zero (Using else)
Create a version of the previous program, using "else"...
59
Greatest of three numbers
Write a Java program to get three numbers from the user and display the greatest one....
39
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")....
65
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")....
49
While + Counter
Create a Java program to display the numbers 1 to 10 on screen, using "while"....
78
Multiplication table (use while)
Write a Java program to ask the user for a number and display its multiplication table, using a "while"...
63
Odd numbers descending
Create a Java program to display on the screen the odd numbers from 15 to 7 (downwards), using "while"...
58
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...
51
Two negative numbers
Create a Java program to accept two numbers from the user and answer if both are negative or not....
65
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....
48
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...
49
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...
60
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...
50
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...
62
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...
78
Several multiplication tables, (use do while)
Display the multiplication tables from 2 to 6, using nested "do...while"....
62
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...
75
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...
58
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...
53
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...
59
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...
62
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...
62
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....
55
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 ...
54
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...
63
Statistics
Exercise 2.29: Statistics Objetive: Write a program to compute several basic statistical operations: it will accept numbers from the user and sho...
78
Switch
Create a program in Java to display the "text mark" corresponding to a certain "numeric mark", using the following equivalence: 9.10 = Outstanding ...
98
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 ...
58
Prime number
Write a Java program which asks the user for an integer number and answers if it is a prime number or not....
62
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...
55
Exceptions
Create a Java program to ask the user for two numbers and display their division. Errors must be trapped using "try..catch"....