<span>Go appears in the menu bar when Finder has focus, not in the Finder window.</span>
        
             
        
        
        
A many periphels can be used
        
                    
             
        
        
        
Answer:
import java.io.*;
import java.util.Scanner;
class divide {
 public static void main (String[] args) {
     Scanner num=new Scanner(System.in);//scanner object.
     int userNum=num.nextInt();
     while(userNum>1)//while loop.
     {
         userNum/=2;//dividing the userNum.
         System.out.print(userNum+" ");//printing the userNum.
     }
 }
}
Input:-
40
Output:-
20 10 5 2 1
Input:-
2
Output:-
1
Input:-
0
Output:-
No Output
Input:-
-1
Output:-
No Output.
Explanation:
In the program While loop is used.In the while loop it divides the userNum by 2 in each iteration and prints the value of userNum.The inputs and corresponding outputs are written in the answer.
 
        
                    
             
        
        
        
A logic gate is an idealized or physical device implementing a Boolean function; that is, it performs a logical operation on one or more binary inputs and produces a single binary output.