关于ios::sync_with_stdio(false);的使用
  • 板块学术版
  • 楼主南瓜桐
  • 当前回复24
  • 已保存回复24
  • 发布时间2021/10/10 10:10
  • 上次更新2023/11/4 04:12:33
查看原帖
关于ios::sync_with_stdio(false);的使用
439327
南瓜桐楼主2021/10/10 10:10

为什么会报错啊

#include<iostream>
#include<algorithm>
#include<cstring>
#include<string>
#include<cstdio>
using namespace std;
int n;
int main(){
	ios::sync_with_stdio(false);
	cin.tie(NULL); 
	cin>>n;
	cout<<n
	return 0;
}

2021/10/10 10:10
加载中...