#include <iostream>
using namespace std;
#define DEBUGSWITCH 1
int main() {
cout << "Hello World !!!" << endl;
#if DEBUGSWITCH
cout << "Debug Info" << endl;
#endif
return 0;
}
转载于:https://www.cnblogs.com/wjchang/p/3671512.html
#include <iostream>
using namespace std;
#define DEBUGSWITCH 1
int main() {
cout << "Hello World !!!" << endl;
#if DEBUGSWITCH
cout << "Debug Info" << endl;
#endif
return 0;
}
转载于:https://www.cnblogs.com/wjchang/p/3671512.html