Contact: aviboots(AT)netvision.net.il
41,567 questions
54,187 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 */