Java Taskbook Level 4.2
Print to the console all numbers in the range from 10
to 1000
whose first digit is even.
Given an integer:
int num = 12345;
Print to the console the number of even digits in this number.
Given an integer:
int num = 12;
Print all divisors of this number to the console.
Two arrays are given:
int[] arr1 = [1, 2, 3, 4, 5];
int[] arr2 = [1, 2, 3];
Check that all elements of the first array are in the second.
Given an integer:
int num = 12345;
Swap the first and last digits of this number:
int 52341