Contact: aviboots(AT)netvision.net.il
40,849 questions
53,254 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 */