1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60
|
#include <iostream>
#include <iomanip>
#include <sstream>
#include <fstream>
#include <string>
using namespace std ;
const size_t NL = 10 ;
const string FI = "xoxo.txt" ;
const int P = 2 ;
typedef struct ff1
{ float f1, f2, f3 ;
} ff1 ;
void doFill( size_t nl )
{ ff1 s ;
float f1 = 10.50;
float f2 = 20.50;
float f3 = 30.50;
fstream F ( FI.c_str() , ios::out | ios::binary ) ;
if( ! F ) exit(0) ;
for( size_t i = 0 ; i < nl ; i++ )
{ s.f1 = f1;
s.f2 = f2;
s.f3 = f3;
F << s.f1 << ' ' << s.f2 << ' ' << s.f3 << endl ;
f1 += 1.0 ;
f2 += 1.0 ;
f3 += 1.0 ;
}
F.close() ;
}
void doRead( size_t nl, int p )
{ ff1 s ;
string z ;
char c ;
fstream F ( FI.c_str() , ios::in | ios::binary ) ;
if( ! F ) exit(0) ;
while( getline( F, z ) )
{ istringstream is(z) ;
is >> s.f1 >> c >> s.f2 >> c >> s.f3 ;
cout << fixed << setfill('0') << setprecision(p)
<< s.f1 << ' ' << s.f2 << ' ' << s.f3 << endl;
}
F.close() ;
}
void do1()
{ doFill( NL ) ;
doRead( NL, P ) ;
}
int main()
{ do1() ;
return 0 ;
} |
Partager