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
|
#include <iostream>
#include <fstream>
using namespace std;
void fillmat(double mat[][13], int m, int n, istream *is=0);
void printmat(double mat[][13], int m, int n, ostream &os=cout);
int main()
{
double mat[32][13];
fillmat(mat,32,13);
printmat(mat,32,13);
ofstream logOS("log.txt");
printmat(mat,32,13,logOS);
logOS.close(); /*IMPORTANT*/
return 0;
}
void fillmat(double mat[][13], int m, int n, istream *is)
{
if(is){
for(int i=0; i<m; i++){
for(int j=0; j<n; j++){
(*is) >> mat[i][j];
}
}
}else{
for(int i=0; i<m; i++){
for(int j=0; j<n; j++){
mat[i][j]=(double)(i+1)/(double)(j+1);
}
}
}
}
void printmat(double mat[][13], int m, int n, ostream &os)
{
os.precision(4);
for(int i=0; i<m; i++){
if(i!=m-1) os << i << ":\t";
else os << "total:\t";
for(int j=0; j<n; j++){
os << mat[i][j] << "\t";
}
os << endl;
}
}
|