A+B Problem的一些离谱解法
摘要:
代码均为C++ 1.正解 #include<iostream> using namespace std; int main(){ int a,b; cin>>a>>b; cout<<a+b<<endl; return 0; } 2.差点TLE #include <bits/stdc++.h> usi 阅读全文
posted @ 2025-08-30 20:27 lkjy-coding 阅读(9) 评论(0) 推荐(0)