cpp 关闭同步流之后的注意事项

关闭同步流代码:

ios::sync_with_stdio(false);
cin.tie(0);
cout.tie(0);

关闭同步流之后cin和scanf不能混用, cout和printf不能混用

cin.tie(0);之后要手动flush   endl会自动flush但是\n不会。

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