c_cpp https://paiza.jp/poh/enshura

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了c_cpp https://paiza.jp/poh/enshura相关的知识,希望对你有一定的参考价值。

#include <algorithm>
#include <iterator>
#include <iostream>
using namespace std;

int main() {
	int i=0;
	copy_if(
		istream_iterator<char>(cin>>noskipws),
		istream_iterator<char>(),
		ostream_iterator<char>(cout),
		[&i](const char &ch) {return (++i)%2;}
		);
	cout<<endl;
	return 0;
}

// https://paiza.jp/poh/enshura-second/8e09c5dc

以上是关于c_cpp https://paiza.jp/poh/enshura的主要内容,如果未能解决你的问题,请参考以下文章

c_cpp 127.单词阶梯

c_cpp MOFSET

c_cpp MOFSET

c_cpp 31.下一个排列

c_cpp string→char *

c_cpp 54.螺旋矩阵