- C++
抽象.cpp
- 2024-8-27 17:53:00 @
感谢徐聪明头号粉丝的改正。
#include <iostream>
#define true 0
#define false 1
using namespace std;
struct ZDJD{
bool O(){
return false;
}
}o;
int a,b;
int main(){
ios::sync_with_stdio(0);cin.tie(0);cout.tie(0);//输入输出加速代码
cin >> a >> b;
if(o.O()){
cout << a + b;
}
return true;
}
2 comments
-
陈锦润 LV 8 @ 2024-8-28 9:28:16
#include <iostream> #define true 0 #define false 1 using namespace std; struct ZDJD{ bool O(){ return true; } }o; int a,b; int main(){ ios::sync_with_stdio(0);cin.tie(0);cout.tie(0);//输入输出加速代码 cin >> a >> b; if(o.O()){ cout << a + b; } return true; }
-
2024-8-27 17:57:00@
666
- 1