Question: Write java IF statement that prints true if both x and y are positive numbers. 3. If integer variable currentNumber is odd, change its value
Write java IF statement that prints true if both x and y are positive numbers.
3. If integer variable currentNumber is odd, change its value so that it is now 3
times currentNumber plus 1, otherwise change its value so that it is now half of
currentNumber.
int currentNumber = 12;
if(currentNumber%2==1){
currentNumber = currentNumber*3+1;
}
else
currentNumber = currentNumber/2;
Step by Step Solution
There are 3 Steps involved in it
Heres the Java if statement that prints true if both x and y are positive numbers int x 5 int ... View full answer
Get step-by-step solutions from verified subject matter experts
