Contact: aviboots(AT)netvision.net.il
39,883 questions
51,809 answers
573 users
#include <iostream> using std::cout; using std::endl; using std::ios; int main() { cout.setf(ios::uppercase | ios::scientific); cout << 672.0 << endl; return 0; } /* run: 6.720000E+02 */