Quote (Speed93 @ Oct 18 2012 02:54am)
int main(void)
{
for (double x=90.1;x<4.1;x-2)
{
cout << x;
}
return 0;
}
How can I change the increments for the for loop for something like decreasing by 2 or dividing each number by two, or adding 2 to each number.
Quote (Speed93 @ Oct 18 2012 12:43pm)
Nothing will print no matter what I do D:
Read the bold very carefully.