A novice in programming came up with this code...
int num1 = 10;
int num2 = 50;
while (num1 < num2)
{
placeorders();
}
What is the effect on the orders? Too many / too few / pretty much the same?
Can you warrant a guess?.. Move the mouse over the text to see the answer...
int num1 = 10;
int num2 = 50;
while (num1 < num2)
{
placeorders();
}
What is the effect on the orders? Too many / too few / pretty much the same?
Can you warrant a guess?.. Move the mouse over the text to see the answer...
Comments