Answer:
If it works then no, if it doesn't then yes
Explanation:
Code Academy probably runs either way because it is not taking this as a intense class.
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:
The law of conservation of Energy states that energy can never be created nor destroyed.
Explanation:
Answer:
what is the question and answers?