Level 4.3 Java Problem Book
Print to the console all
numbers in the range
from 10 to 1000,
where the second-to-last digit
is even.
Write a program that will form the following string:
"123456789"
Two integers are given:
int num1 = 12;
int num2 = 16;
Print the common divisors of these numbers to the console.
A string with integers separated by spaces is given:
String str = "123 456 789";
Find the sum of the numbers from this string.
A string with words is given:
String str = "word1 word2 word3";
Get the first N words from
this string.