ACM C++ cin cout 加速IO

版权声明:本文为博主原创文章,未经博主允许不得转载。 https://blog.csdn.net/jal517486222/article/details/82952809
#include <iostream>
int main() 
{
    std::ios::sync_with_stdio(false);//这句话放在main里面的开始位置,就可以加速cin cout 
}

猜你喜欢

转载自blog.csdn.net/jal517486222/article/details/82952809
今日推荐