来迟了
查看原帖
来迟了
1213524
C_plus_plus_12345楼主2024/12/1 09:41

如果您们喜欢用cin或者cout,那么您们可以使用以下代码模版:

#include<bits/stdc++.h>
using namespace std;
int main()
{
  ios::sync_with_stdio(false);
  cin.tie(0);
  cout.tie(0);

  // TODO

  return 0;
}
2024/12/1 09:41
加载中...