Contact: aviboots(AT)netvision.net.il
39,884 questions
51,810 answers
573 users
#include <iostream> using std::cout; using std::endl; int main() { double f = 3.14; cout.setf(std::ios::showpos); cout << f << endl; return 0; } /* run: +3.14 */