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 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119
|
#include <iostream>
#include <fstream>
#include <algorithm>
#include <vector>
#include <string>
#include <cstdlib>
using namespace std;
typedef struct
{
string Pondeli_Hodiny;
string Pondeli_Minuty;
string Uteri_Hodiny;
string Uteri_Minuty;
string Streda_Hodiny;
string Streda_Minuty;
string Ctvrtek_Hodiny;
string Ctvrtek_Minuty;
string Patek_Hodiny;
string Patek_Minuty;
string Sobota_Hodiny;
string Sobota_Minuty;
string Nedele_Hodiny;
string Nedele_Minuty;
string ID;
} Hodiny;
void ctiHodiny (ifstream &fromStream, Hodiny &a, int velikost) // function for write data in file 2
{
getline(fromStream, a.ID, ';');
getline(fromStream, a.Pondeli_Hodiny, ':');
getline(fromStream, a.Pondeli_Minuty, ';');
getline(fromStream, a.Uteri_Hodiny, ':');
getline(fromStream, a.Uteri_Minuty, ';');
getline(fromStream, a.Streda_Hodiny, ':');
getline(fromStream, a.Streda_Minuty, ';');
getline(fromStream, a.Ctvrtek_Hodiny, ':');
getline(fromStream, a.Ctvrtek_Minuty, ';');
getline(fromStream, a.Patek_Hodiny, ':');
getline(fromStream, a.Patek_Minuty, ';');
getline(fromStream, a.Sobota_Hodiny, ':');
getline(fromStream, a.Sobota_Minuty, ';');
getline(fromStream, a.Nedele_Hodiny, ':');
getline(fromStream, a.Nedele_Minuty, '\n');
velikost2 = ++velikost2;
}
bool pisHodiny (ostream &toStream, Hodiny a) // function to write in console data
{
toStream << a.ID << " " << a.Pondeli_Hodiny << ':' << a.Patek_Minuty << " " << a.Uteri_Hodiny << ':' << a.Uteri_Minuty << " " << a.Streda_Hodiny << ':' << a.Streda_Minuty << " " << a.Ctvrtek_Hodiny << ':' << a.Ctvrtek_Minuty << " " << a.Patek_Hodiny << ':'
<< a.Patek_Minuty << " " << a.Sobota_Hodiny << ':' << a.Sobota_Minuty << " " << a.Nedele_Hodiny << ':' << a.Nedele_Minuty << endl;
return true;
}
int main()
{
/**
*Otevreni vstupniho souboru obsahujici ID Zamestnance a pocet hodin odpracovanych za jednotlive dny
*/
string name2 = ("..\\vstupnidata\\Leden.csv");
ifstream souborHodin(name2.c_str());
if (souborHodin == NULL)
{
cout << "Chyba pri otevreni souboru" << endl;
return -1;
}
}
Hodiny hodiny;
while (!souborHodin.eof())
{
ctiHodiny(souborHodin, hodiny, velikost2); // call read function
pisHodiny(cout, hodiny); //call write function
}
return 0;
}
|