Welcome to Assignment Heroes

Write A While Loop That Prints UserNum Divided By 2 (Integer Division) Until Reaching 1. Follow Each Number By A Space. Example Output For User

Write A While Loop That Prints UserNum Divided By 2 (Integer Division) Until Reaching 1. Follow Each Number By A Space. Example Output For User. Write a while loop that prints userNum divided by 2 (integer division) until reaching 1. Follow each number by a space. Example output for userNum = 40:

20 10 5 2 1

Note: These activities may test code with different test values. This activity will perform four tests, with userNum = 40, then with userNum = 2, then with userNum = 0, then with userNum = -1. See “How to Use zyBooks”.

Also note: If the submitted code has an infinite loop, the system will stop running the code after a few seconds, and report “Program end never reached.” The system doesn’t print the test case that caused the reported message.

import java.util.Scanner;

public class DivideByTwoLoop {
public static void main (String [] args) {
Scanner scnr = new Scanner(System.in);
int userNum;

userNum = scnr.nextInt();

*insert code*

System.out.println(“”);
}
}

Write A While Loop That Prints UserNum Divided By 2 (Integer Division) Until Reaching 1. Follow Each Number By A Space. Example Output For User

Solution:

15% off for this assignment.

Our Prices Start at $11.99. As Our First Client, Use Coupon Code GET15 to claim 15% Discount This Month!!

Why US?

100% Confidentiality

Information about customers is confidential and never disclosed to third parties.

Timely Delivery

No missed deadlines – 97% of assignments are completed in time.

Original Writing

We complete all papers from scratch. You can get a plagiarism report.

Money Back

If you are convinced that our writer has not followed your requirements, feel free to ask for a refund.