c++ cin加速器

#include 
int main() 
{
    std::ios::sync_with_stdio(false);//这句话放在main里面的开始位置,就可以加速cin cout 
    //接下来就写你自己的程序了
}

你可能感兴趣的:(c++)