Minus sign is by definition present in front of numbers if number is negative. But how to push the code below to print the plus sign in front of number (so the code will output +1.00 not 1.00) ?
a=1
write(*,'(f5.2)') a
No typing of '+' sign manually like below please
a=1
write(*,'(1h+,f5.2)') a