showpos
| ios::uppercase | ios::showpos | ios::scientific | ios::fixed
if (sign > 0 && (stream.flags() & ios::showpos))
/* showsign: */ (flags() & ios::showpos) != 0,
flags() & ios::showpos ? '+' : 0,
if (flags() & (ios::fixed|ios::scientific) & ios::showpos)
else if (flags() & ios::showpos) sign = '+';
/* showsign: */ (flags() & ios::showpos) != 0,