cin 与 scanf 的差速补偿

tech2024-07-30  62

在实际的代码过程中,cin可能比scanf要慢上一倍。 通过加上:

ios::sync_with_stdio(false); //来使cin获得和scanf一样的速度 //副作用是不可以再使用scanf
最新回复(0)