#include<bits/stdc++.h>
using namespace std;
string name, tmp, s;
int main()
{
    cin >> tmp ;
    s = "g++ " + tmp + ".cpp -Wall -O2 -std=c++11 -fsanitize=address -ftrapv -o " + tmp ;
    system(s.c_str());
    return 0;
}

 

相关文章:

  • 2021-09-08
  • 2022-02-25
  • 2021-06-22
  • 2021-10-12
  • 2022-12-23
  • 2022-12-23
  • 2021-09-29
  • 2021-08-15
猜你喜欢
  • 2021-10-01
  • 2021-09-01
  • 2021-06-29
  • 2022-02-19
  • 2021-10-20
  • 2021-04-22
相关资源
相似解决方案