I am sorry if I am being too annoying with my questions, but here's a really puzzling one, especially, since I'd been running the same operation in Java, and it worked PERFECTLY!
here's the code:
Code:
double i = 0;
while(i<5){
if(i*2 == 1.6)printf("%s", "Yay");
i=i+0.1;
}
I've tried, float, coverting double to float, and backwards...
Please help,
Thanks,
Thanks again,
Daniel

