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

1 Expert Approved Answer
Step: 1 Unlock

Heres the Java if statement that prints true if both x and y are positive numbers int x 5 int ... View full answer

blur-text-image
Question Has Been Solved by an Expert!

Get step-by-step solutions from verified subject matter experts

Step: 2 Unlock
Step: 3 Unlock

Students Have Also Explored These Related Programming Questions!