Show your support by donating any amount. (Note: We are still technically a for-profit company, so your
contribution is not tax-deductible.)
PayPal Acct:
Feedback:
Donate to VoyForums (PayPal):
[ Login ] [ Contact Forum Admin ] [ Main index ] [ Post a new message ] [ Search | Check update time ] |
#include <iostream.h>
#include <iomanip.h>
int main()
{ float x = 2.0/3.0;
cout << setprecision( 2 ) << x << endl;
return 0;
}