home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Shareware Supreme Volume 6 #1
/
swsii.zip
/
swsii
/
099
/
IOSTREAM.ZIP
/
EX_O72.CPP
< prev
next >
Wrap
C/C++ Source or Header
|
1993-01-07
|
318b
|
19 lines
// EXAMPLE OUTPUT-72
// HOW TO EMULATE printf AND SET
// THE PRECISION
#include <header.h>
int main()
{
cout.setf(ios::showpoint) ;
cout.precision(1) ;
cout << 1.2300 << '\n' ;
cout << 4.00 << '\n' ;
cout << 5.678E2 << '\n' ;
cout << 0.0 << '\n' ;
return 0 ;
}