Yurttas/PL/OOL/CS/F/02/05/10/00/03/print animals.cpp

From ZCubes Wiki
Jump to navigation Jump to search
 1/*
 2   Copyright(C) 2003
 3   All Rights Reserved. Salih Yurttas, ZCubes, BitsOfCode Software Systems, Inc..
 4
 5   Permission to use, copy, modify, and distribute this
 6   software and its documentation for EDUCATIONAL purposes
 7   and without fee is hereby granted provided that this
 8   copyright notice appears in all copies.
 9 
10   date   : September 1, 2003.
11   author : Salih Yurttas.
12
13   print_animals.cpp
14*/
15
16
17#include "common.h"
18
19#include "io.h"
20
21string get_filename(string);
22
23void print_animals(vector<string>& d,
24                   vector<string>& e) {
25  string filename = get_filename("output");
26
27  ofstream f_out(filename.c_str());
28  
29  int n = d.size();
30
31  for(int i=0; i<n; i++)
32    f_out << d.at(i) << endl;
33
34  f_out << endl;
35
36  for(int i=0; i<n; i++)
37    f_out << e.at(i) << endl;
38
39  f_out.close();
40}