Hi.
Iostream ima izgleda en bug. Jaz vsaj ne vidim druge resitve...
#include <iostream.h>
int main()
{
cout.setf(ios::showpos);
cout.setf(ios::scientific);
cout << 123 << " " << 123.23 << "\n";
}
Bi moral vrniti:
+123 +1.232300e+02
vrne pa:
+123 9.138640e-3871
bogus torej...
What's wrong? (probajte ta example)
Bye,
A.