// Problem 1
// Problem 2
// Problem 3
// Problem 4
i = 0;
while(i <= 100)
{
    System.out.print(i + " ");
    i *= 2;
}
i = 1;
while(i <= 100)
{
    System.out.print(i + " ");
    i *= 1;
}
i = 1;
while(i <= 100);
{
    System.out.print(i);
    i *= 1;
}
// In this loop, start high and end low.
i = 128;
while i < 1
{
    System.out.print(i + " ")
    i /= 2;
}
read first item
while (not at end of list)
{
    update summary statistics
    read next item
}
Write a Java application that inputs a list of items in
input dialogs. The user clicks on Cancel to terminate the
list.
Here are the answers.
 
Here are the answers.