Jupiter
Каратель
6568 / 3989 / 227
Регистрация: 26.03.2010
Сообщений: 9,273
|
16.11.2011, 23:31
|
|
C++ | 1
2
3
4
5
6
7
8
9
10
11
12
13
14
| #include <string>
#include <fstream>
#include <iostream>
int main()
{
std::string str;
std::ifstream file("456.txt");
while (std::getline(file, str))
std::cout << str << std::endl;
return 0;
} |
|
0
|