C++ |
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
| #include <iostream>
#include <cstdlib>
#include <fstream>
using namespace std;
int main()
{
ifstream fin("file.txt");
if (!fin)
cout << "Error!" << endl;
else
{
int d, m, y;
fin >> d;
fin.get();
fin >> m;
fin.get();
fin >> y;
cout << d << '.' << m << '.' << y << endl;
}
system("PAUSE");
return 0;
} |
|
С остальным, надеюсь, проблем не будет.