Answer:
class Program {
public static void Main (string[] args) {
double number = 1.0;
while(number >= 0.001) {
Console.WriteLine (number);
number /= 2;
}
}
}
Explanation:
Always think carefully about what is in the condition of the while statement. In this case, you want the loop to be executed as long as the number is larger than or equal to 0.001.
Answer:
update
Explanation:
a table of contents does not update itself automatically.
Pie chart I believe that is the right answer
Answer:
it allows them to work more efficiently, with fewer waisted resources
Explanation:
Answer:
all except keeping your hands higher than your elbows