#include<bits/stdc++.h> using namespace std; string name, tmp, s; int main() { cin >> tmp ; s = "g++ " + tmp + ".cpp -Wall -O2 -std=c++11 -o " + tmp +".exe"; system(s.c_str()); return 0; }
输入cpp的名称即可。
原文:https://www.cnblogs.com/Miracevin/p/11108101.html