-
Notifications
You must be signed in to change notification settings - Fork 0
/
perenos.cpp
36 lines (31 loc) · 892 Bytes
/
perenos.cpp
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
#include <iostream>
#include <sstream>
#include <fstream>
#include <iterator>
void output_n(std::ostream& _out, std::istream& _in){
if(_in.fail() || _in.eof())
return;
std::istreambuf_iterator<char> p(_in), e;
std::ostreambuf_iterator<char> d(_out);
while((p != e) && !_in.fail()){
_out << ' ';
while((p != e) && (*p != '\n'))
*d++ = *p++;
if(p != e)
*d++ = *p++;
}
_out.flush();
}
int main(void){
//для примера ввод из строки вывод в консоль
char s[] = "hello\nwtf\nhuina\nkak zaibalsa\nya progat na c++\n";
std::istringstream sp(s);
output_n(std::cout, sp);
//ввод/вывод из файла
std::ifstream fin("input.txt");
std::ofstream fout("output.txt");
output_n(fout, fin);
fin.close();
fout.close();
return 0;
}