极限,1000行!
2026-03-01 22:47:02
发布于:浙江
求赞:
#include<algorithm>
#include<cassert>
#include<cctype>
#include<chrono>
#include<climits>
#include<cmath>
#include<cstddef>
#include<cstdint>
#include<cstdio>
#include<cstdlib>
#include<cstring>
#include<ctime>
#include<exception>
#include<fstream>
#include<functional>
#include<iomanip>
#include<ios>
#include<iostream>
#include<istream>
#include<iterator>
#include<limits>
#include<locale>
#include<map>
#include<memory>
#include<mutex>
#include<new>
#include<numeric>
#include<ostream>
#include<queue>
#include<random>
#include<set>
#include<sstream>
#include<stack>
#include<stdexcept>
#include<string>
#include<thread>
#include<tuple>
#include<type_traits>
#include<typeinfo>
#include<unordered_map>
#include<unordered_set>
#include<utility>
#include<vector>
#define ENABLE_VERBOSE_LOGGING 1
#define ENABLE_TIMING 1
#define ENABLE_THREAD_SAFETY 1
#define USE_MULTITHREADING 0
#define MAX_ITERATIONS 1
#define START_OF_PROGRAM do {
#define END_OF_PROGRAM } while(0)
#define BEGIN_NAMESPACE namespace {
#define END_NAMESPACE }
#define UNUSED(x) ((void)(x))
#define IGNORE_RETURN_VALUE(x) if (x) {}
#define LIKELY(x) (__builtin_expect(!!(x), 1))
#define UNLIKELY(x) (__builtin_expect(!!(x), 0))
#define PROGRAM_NAME "A+B Solver"
#define PROGRAM_VERSION "9.9.9"
#define PROGRAM_AUTHOR "Dr. Overkill"
#define PROGRAM_LICENSE "GPLv3+ with extra verbosity clause"
using namespace std;
int useless_func_1(int x) {
return x + 1;
}
int useless_func_2(int x) {
return x - 1;
}
int useless_func_3(int x) {
return x * 2;
}
int useless_func_4(int x) {
return x / 2;
}
int useless_func_5(int x) {
return x % 3;
}
int useless_func_6(int x) {
return x * x;
}
int useless_func_7(int x) {
return x + x;
}
int useless_func_8(int x) {
return x - x;
}
int useless_func_9(int x) {
return x * 10;
}
int useless_func_10(int x) {
return x / 10;
}
int useless_func_11(int x) {
return x + 100;
}
int useless_func_12(int x) {
return x - 100;
}
int useless_func_13(int x) {
return x * 100;
}
int useless_func_14(int x) {
return x / 100;
}
int useless_func_15(int x) {
return x % 100;
}
int useless_func_16(int x, int y) {
return x + y;
}
int useless_func_17(int x, int y) {
return x - y;
}
int useless_func_18(int x, int y) {
return x * y;
}
int useless_func_19(int x, int y) {
if(y!=0)
return x/y;
else
return 0;
}
int useless_func_20(int x, int y) {
return x % y;
}
long useless_func_21(long x) {
return x + 1;
}
long useless_func_22(long x) {
return x - 1;
}
long useless_func_23(long x) {
return x * 2;
}
long useless_func_24(long x) {
return x / 2;
}
long useless_func_25(long x) {
return x % 3;
}
long useless_func_26(long x) {
return x * x;
}
long useless_func_27(long x) {
return x + x;
}
long useless_func_28(long x) {
return x - x;
}
long useless_func_29(long x) {
return x * 10;
}
long useless_func_30(long x) {
return x / 10;
}
long useless_func_31(long x) {
return x + 100;
}
long useless_func_32(long x) {
return x - 100;
}
long useless_func_33(long x) {
return x * 100;
}
long useless_func_34(long x) {
return x / 100;
}
long useless_func_35(long x) {
return x % 100;
}
long useless_func_36(long x, long y) {
return x + y;
}
long useless_func_37(long x, long y) {
return x - y;
}
long useless_func_38(long x, long y) {
return x * y;
}
long useless_func_39(long x, long y) {
if(y!=0)
return x/y;
else
return 0;
}
long useless_func_40(long x, long y) {
return x % y;
}
float useless_func_41(float x) {
return x + 1.0f;
}
float useless_func_42(float x) {
return x - 1.0f;
}
float useless_func_43(float x) {
return x * 2.0f;
}
float useless_func_44(float x) {
return x / 2.0f;
}
float useless_func_45(float x) {
return x * x;
}
float useless_func_46(float x) {
return x + x;
}
float useless_func_47(float x) {
return x - x;
}
float useless_func_48(float x) {
return x * 10.0f;
}
float useless_func_49(float x) {
return x / 10.0f;
}
float useless_func_50(float x) {
return x + 100.0f;
}
float useless_func_51(float x, float y) {
return x + y;
}
float useless_func_52(float x, float y) {
return x - y;
}
float useless_func_53(float x, float y) {
return x * y;
}
float useless_func_54(float x, float y) {
if(y!=0.0f)
return x/y;
else
return 0.0f;
}
double useless_func_55(double x) {
return x + 1.0;
}
double useless_func_56(double x) {
return x - 1.0;
}
double useless_func_57(double x) {
return x * 2.0;
}
double useless_func_58(double x) {
return x / 2.0;
}
double useless_func_59(double x) {
return x * x;
}
double useless_func_60(double x) {
return x + x;
}
double useless_func_61(double x) {
return x - x;
}
double useless_func_62(double x) {
return x * 10.0;
}
double useless_func_63(double x) {
return x / 10.0;
}
double useless_func_64(double x) {
return x + 100.0;
}
double useless_func_65(double x, double y) {
return x + y;
}
double useless_func_66(double x, double y) {
return x - y;
}
double useless_func_67(double x, double y) {
return x * y;
}
double useless_func_68(double x, double y) {
if(y!=0.0)
return x/y;
else
return 0.0;
}
char useless_func_69(char c) {
return c + 1;
}
char useless_func_70(char c) {
return c - 1;
}
char useless_func_71(char c) {
return c * 2;
}
char useless_func_72(char c) {
return c / 2;
}
char useless_func_73(char c1, char c2) {
return c1 + c2;
}
char useless_func_74(char c1, char c2) {
return c1 - c2;
}
bool useless_func_75(bool b) {
return !b;
}
bool useless_func_76(bool b1, bool b2) {
return b1 && b2;
}
bool useless_func_77(bool b1, bool b2) {
return b1 || b2;
}
bool useless_func_78(int x, int y) {
return x > y;
}
bool useless_func_79(int x, int y) {
return x < y;
}
bool useless_func_80(int x, int y) {
return x == y;
}
bool useless_func_81(long x, long y) {
return x > y;
}
bool useless_func_82(long x, long y) {
return x < y;
}
bool useless_func_83(long x, long y) {
return x == y;
}
bool useless_func_84(float x, float y) {
return x > y;
}
bool useless_func_85(float x, float y) {
return x < y;
}
bool useless_func_86(float x, float y) {
return x == y;
}
bool useless_func_87(double x, double y) {
return x > y;
}
bool useless_func_88(double x, double y) {
return x < y;
}
bool useless_func_89(double x, double y) {
return x == y;
}
int useless_func_90(int arr[], int n) {
int sum=0;
for(int i=0;i<n;i++)
sum+=arr[i];
return sum;
}
int useless_func_91(int arr[], int n) {
int max=arr[0];
for(int i=1;i<n;i++)
if(arr[i]>max)
max=arr[i];
return max;
}
int useless_func_92(int arr[], int n) {
int min=arr[0];
for(int i=1;i<n;i++)
if(arr[i]<min)
min=arr[i];
return min;
}
long useless_func_93(long arr[], int n) {
long sum=0;
for(int i=0;i<n;i++)
sum+=arr[i];
return sum;
}
long useless_func_94(long arr[], int n) {
long max=arr[0];
for(int i=1;i<n;i++)
if(arr[i]>max)
max=arr[i];
return max;
}
long useless_func_95(long arr[], int n) {
long min=arr[0];
for(int i=1;i<n;i++)
if(arr[i]<min)
min=arr[i];
return min;
}
float useless_func_96(float arr[], int n) {
float sum=0;
for(int i=0;i<n;i++)
sum+=arr[i];
return sum;
}
float useless_func_97(float arr[], int n) {
float max=arr[0];
for(int i=1;i<n;i++)
if(arr[i]>max)
max=arr[i];
return max;
}
float useless_func_98(float arr[], int n) {
float min=arr[0];
for(int i=1;i<n;i++)
if(arr[i]<min)
min=arr[i];
return min;
}
double useless_func_99(double arr[], int n) {
double sum=0;
for(int i=0;i<n;i++)
sum+=arr[i];
return sum;
}
double useless_func_100(double arr[], int n) {
double max=arr[0];
for(int i=1;i<n;i++)
if(arr[i]>max)
max=arr[i];
return max;
}
double useless_func_101(double arr[], int n) {
double min=arr[0];
for(int i=1;i<n;i++)
if(arr[i]<min)
min=arr[i];
return min;
}
void useless_func_102() {
}
void useless_func_103() {
}
void useless_func_104() {
}
void useless_func_105() {
}
void useless_func_106() {
}
void useless_func_107() {
}
void useless_func_108() {
}
void useless_func_109() {
}
void useless_func_110() {
}
void useless_func_111() {
}
void useless_func_112() {
}
void useless_func_113() {
}
void useless_func_114() {
}
void useless_func_115() {
}
void useless_func_116() {
}
void useless_func_117() {
}
void useless_func_118() {
}
void useless_func_119() {
}
void useless_func_120() {
}
int useless_func_121(int x) {
for(int i=0;i<100;i++)
x+=i;
return x;
}
int useless_func_122(int x) {
for(int i=100;i>0;i--)
x-=i;
return x;
}
long useless_func_123(long x) {
for(long i=0;i<1000;i++)
x+=i;
return x;
}
long useless_func_124(long x) {
for(long i=1000;i>0;i--)
x-=i;
return x;
}
float useless_func_125(float x) {
for(int i=0;i<50;i++)
x*=1.1f;
return x;
}
float useless_func_126(float x) {
for(int i=0;i<50;i++)
x/=1.1f;
return x;
}
double useless_func_127(double x) {
for(int i=0;i<50;i++)
x*=1.1;
return x;
}
double useless_func_128(double x) {
for(int i=0;i<50;i++)
x/=1.1;
return x;
}
int useless_func_129(int x, int y, int z) {
return x + y + z;
}
int useless_func_130(int x, int y, int z) {
return x * y * z;
}
int useless_func_131(int x, int y, int z) {
return (x + y) * z;
}
int useless_func_132(int x, int y, int z) {
return x + (y * z);
}
long useless_func_133(long x, long y, long z) {
return x + y + z;
}
long useless_func_134(long x, long y, long z) {
return x * y * z;
}
long useless_func_135(long x, long y, long z) {
return (x + y) * z;
}
long useless_func_136(long x, long y, long z) {
return x + (y * z);
}
float useless_func_137(float x, float y, float z) {
return x + y + z;
}
float useless_func_138(float x, float y, float z) {
return x * y * z;
}
float useless_func_139(float x, float y, float z) {
return (x + y) * z;
}
float useless_func_140(float x, float y, float z) {
return x + (y * z);
}
double useless_func_141(double x, double y, double z) {
return x + y + z;
}
double useless_func_142(double x, double y, double z) {
return x * y * z;
}
double useless_func_143(double x, double y, double z) {
return (x + y) * z;
}
double useless_func_144(double x, double y, double z) {
return x + (y * z);
}
int useless_func_145(int a, int b, int c, int d) {
return a+b+c+d;
}
int useless_func_146(int a, int b, int c, int d) {
return a*b*c*d;
}
long useless_func_147(long a, long b, long c, long d) {
return a+b+c+d;
}
long useless_func_148(long a, long b, long c, long d) {
return a*b*c*d;
}
float useless_func_149(float a, float b, float c, float d) {
return a+b+c+d;
}
float useless_func_150(float a, float b, float c, float d) {
return a*b*c*d;
}
double useless_func_151(double a, double b, double c, double d) {
return a+b+c+d;
}
double useless_func_152(double a, double b, double c, double d) {
return a*b*c*d;
}
int useless_func_153(int n) {
int res=1;
for(int i=1;i<=n;i++)
res*=i;
return res;
}
long useless_func_154(long n) {
long res=1;
for(long i=1;i<=n;i++)
res*=i;
return res;
}
int useless_func_155(int x, int n) {
int res=1;
for(int i=0;i<n;i++)
res*=x;
return res;
}
long useless_func_156(long x, int n) {
long res=1;
for(int i=0;i<n;i++)
res*=x;
return res;
}
float useless_func_157(float x, int n) {
float res=1;
for(int i=0;i<n;i++)
res*=x;
return res;
}
double useless_func_158(double x, int n) {
double res=1;
for(int i=0;i<n;i++)
res*=x;
return res;
}
int useless_func_159(int x) {
if(x>0)
return 1;
else if(x<0)
return -1;
else
return 0;
}
long useless_func_160(long x) {
if(x>0)
return 1;
else if(x<0)
return -1;
else
return 0;
}
float useless_func_161(float x) {
if(x>0)
return 1;
else if(x<0)
return -1;
else
return 0;
}
double useless_func_162(double x) {
if(x>0)
return 1;
else if(x<0)
return -1;
else
return 0;
}
int useless_func_163(int x) {
return x>0?x:-x;
}
long useless_func_164(long x) {
return x>0?x:-x;
}
float useless_func_165(float x) {
return x>0?x:-x;
}
double useless_func_166(double x) {
return x>0?x:-x;
}
void useless_func_167(int &x) {
x+=10;
}
void useless_func_168(int &x) {
x-=10;
}
void useless_func_169(long &x) {
x+=100;
}
void useless_func_170(long &x) {
x-=100;
}
void useless_func_171(float &x) {
x*=2;
}
void useless_func_172(float &x) {
x/=2;
}
void useless_func_173(double &x) {
x*=3;
}
void useless_func_174(double &x) {
x/=3;
}
int useless_func_175(int x, int y) {
int t=x;
x=y;
y=t;
return x+y;
}
long useless_func_176(long x, long y) {
long t=x;
x=y;
y=t;
return x+y;
}
float useless_func_177(float x, float y) {
float t=x;
x=y;
y=t;
return x+y;
}
double useless_func_178(double x, double y) {
double t=x;
x=y;
y=t;
return x+y;
}
int useless_func_179(int x) {
int cnt=0;
while(x>0) {
cnt++;
x/=10;
}
return cnt;
}
int useless_func_180(long x) {
int cnt=0;
while(x>0) {
cnt++;
x/=10;
}
return cnt;
}
int useless_func_181(int x) {
int sum=0;
while(x>0) {
sum+=x%10;
x/=10;
}
return sum;
}
int useless_func_182(long x) {
int sum=0;
while(x>0) {
sum+=x%10;
x/=10;
}
return sum;
}
bool useless_func_183(int x) {
if(x<=1)
return false;
for(int i=2;i*i<=x;i++)
if(x%i==0)
return false;
return true;
}
bool useless_func_184(long x) {
if(x<=1)
return false;
for(long i=2;i*i<=x;i++)
if(x%i==0)
return false;
return true;
}
int useless_func_185(int x, int y) {
while(y!=0) {
int t=x%y;
x=y;
y=t;
}
return x;
}
long useless_func_186(long x, long y) {
while(y!=0) {
long t=x%y;
x=y;
y=t;
}
return x;
}
int useless_func_187(int x, int y) {
return x*y/useless_func_185(x,y);
}
long useless_func_188(long x, long y) {
return x*y/useless_func_186(x,y);
}
int useless_func_189(int start, int end) {
int sum=0;
for(int i=start;i<=end;i++)
sum+=i;
return sum;
}
long useless_func_190(long start, long end) {
long sum=0;
for(long i=start;i<=end;i++)
sum+=i;
return sum;
}
int useless_func_191(int x) {
return (x/10000)*10000 + (x%10000/1000)*1000 + (x%1000/100)*100 + (x%100/10)*10 + x%10;
}
int useless_func_192(int x) {
int rev=0;
while(x>0) {
rev=rev*10+x%10;
x/=10;
}
return rev;
}
long useless_func_193(long x) {
long rev=0;
while(x>0) {
rev=rev*10+x%10;
x/=10;
}
return rev;
}
int useless_func_194(int a, int b, int c) {
if(a>=b&&a>=c)
return a;
else if(b>=a&&b>=c)
return b;
else
return c;
}
int useless_func_195(int a, int b, int c) {
if(a<=b&&a<=c)
return a;
else if(b<=a&&b<=c)
return b;
else
return c;
}
long useless_func_196(long a, long b, long c) {
if(a>=b&&a>=c)
return a;
else if(b>=a&&b>=c)
return b;
else
return c;
}
long useless_func_197(long a, long b, long c) {
if(a<=b&&a<=c)
return a;
else if(b<=a&&b<=c)
return b;
else
return c;
}
float useless_func_198(float a, float b, float c) {
if(a>=b&&a>=c)
return a;
else if(b>=a&&b>=c)
return b;
else
return c;
}
float useless_func_199(float a, float b, float c) {
if(a<=b&&a<=c)
return a;
else if(b<=a&&b<=c)
return b;
else
return c;
}
double useless_func_200(double a, double b, double c) {
if(a>=b&&a>=c)
return a;
else if(b>=a&&b>=c)
return b;
else
return c;
}
double useless_func_201(double a, double b, double c) {
if(a<=b&&a<=c)
return a;
else if(b<=a&&b<=c)
return b;
else
return c;
}
int useless_func_202(int x) {
return x & 1;
}
int useless_func_203(int x) {
return x | 1;
}
int useless_func_204(int x) {
return x ^ 1;
}
int useless_func_205(int x) {
return ~x;
}
int useless_func_206(int x) {
return x << 1;
}
int useless_func_207(int x) {
return x >> 1;
}
long useless_func_208(long x) {
return x & 1;
}
long useless_func_209(long x) {
return x | 1;
}
long useless_func_210(long x) {
return x ^ 1;
}
long useless_func_211(long x) {
return ~x;
}
long useless_func_212(long x) {
return x << 1;
}
long useless_func_213(long x) {
return x >> 1;
}
int useless_func_214(int x, int y) {
return x & y;
}
int useless_func_215(int x, int y) {
return x | y;
}
int useless_func_216(int x, int y) {
return x ^ y;
}
long useless_func_217(long x, long y) {
return x & y;
}
long useless_func_218(long x, long y) {
return x | y;
}
long useless_func_219(long x, long y) {
return x ^ y;
}
int useless_func_220(int x, int n) {
return x << n;
}
int useless_func_221(int x, int n) {
return x >> n;
}
long useless_func_222(long x, int n) {
return x << n;
}
long useless_func_223(long x, int n) {
return x >> n;
}
void useless_func_224() {}
void useless_func_225() {}
void useless_func_226() {}
void useless_func_227() {}
void useless_func_228() {}
void useless_func_229() {}
void useless_func_230() {}
void useless_func_231() {}
void useless_func_232() {}
void useless_func_233() {}
void useless_func_234() {}
void useless_func_235() {}
void useless_func_236() {}
void useless_func_237() {}
void useless_func_238() {}
void useless_func_239() {}
void useless_func_240() {}
void useless_func_241() {}
void useless_func_242() {}
void useless_func_243() {}
void useless_func_244() {}
void useless_func_245() {}
void useless_func_246() {}
void useless_func_247() {}
void useless_func_248() {}
void useless_func_249() {}
void useless_func_250() {}
int useless_func_251(int x) {
return x + useless_func_1(x);
}
int useless_func_252(int x) {
return x - useless_func_2(x);
}
int useless_func_253(int x) {
return x * useless_func_3(x);
}
int useless_func_254(int x) {
return x * useless_func_4(x);
}
int useless_func_255(int x) {
return x * useless_func_5(x);
}
int useless_func_256(int x) {
return x * useless_func_6(x);
}
int useless_func_257(int x) {
return x * useless_func_7(x);
}
int useless_func_258(int x) {
return x * useless_func_8(x);
}
int useless_func_259(int x) {
return x * useless_func_9(x);
}
int useless_func_260(int x) {
return x * useless_func_10(x);
}
int useless_func_261(int x) {
return x * useless_func_11(x);
}
int useless_func_262(int x) {
return x * useless_func_12(x);
}
int useless_func_263(int x) {
return x * useless_func_13(x);
}
int main() {
int a,b;
cin>>a>>b;
cout<<a+b;
}
全部评论 20
1。使用了未定义/未声明的标识符:
useless_func_4(x)等函数在代码中确实有定义,但main函数使用了未在main之前声明的函数。
2。宏定义可能导致语法错误:
START_OF_PROGRAM do {和 END_OF_PROGRAM } while(0)宏可能导致main函数被错误展开。
3.多个函数定义了相同的名字(虽然在不同参数类型下):
多个useless_func_函数,虽然参数类型或数量不同,但在C++中可能因调用时的参数匹配问题导致重载解析失败。
1周前 来自 湖南
5666你这话一眼假
昨天 来自 上海
0AI好用吗
20小时前 来自 上海
0
666
2026-03-01 来自 湖南
2为什么不用
'' #include <iostream>
using namespace std;
int main(){
int a,b;
cin >> a >> b; cout << a + b;
return 0;
}
''2026-03-01 来自 湖南
3我去不早说
2026-03-01 来自 上海
1哇你好聪明
1周前 来自 浙江
3
你这就随便写点函数充数罢了
2026-02-28 来自 浙江
2对啊,我故意的,本来不会这么单一
2026-02-28 来自 浙江
2真正有用的代码:
int main() {
int a,b;
cin>>a>>b;
cout<<a+b;
}2026-02-28 来自 广东
1脑子有病直说
2026-02-28 来自 广东
1
asa
1周前 来自 江西
1isuigfaidf
2026-02-28 来自 北京
1/bangbangt
2026-02-28 来自 广东
1所以你前面写那么多干嘛?能用的代码就5行!
20小时前 来自 浙江
0v
昨天 来自 浙江
0#include<algorithm>
#include<cassert>
#include<cctype>
#include<chrono>
#include<climits>
#include<cmath>
#include<cstddef>
#include<cstdint>
#include<cstdio>
#include<cstdlib>
#include<cstring>
#include<ctime>
#include<exception>
#include<fstream>
#include<functional>
#include<iomanip>
#include<ios>
#include<iostream>
#include<istream>
#include<iterator>
#include<limits>
#include<locale>
#include<map>
#include<memory>
#include<mutex>
#include<new>
#include<numeric>
#include<ostream>
#include<queue>
#include<random>
#include<set>
#include<sstream>
#include<stack>
#include<stdexcept>
#include<string>
#include<thread>
#include<tuple>
#include<type_traits>
#include<typeinfo>
#include<unordered_map>
#include<unordered_set>
#include<utility>
#include<vector>
#define ENABLE_VERBOSE_LOGGING 1
#define ENABLE_TIMING 1
#define ENABLE_THREAD_SAFETY 1
#define USE_MULTITHREADING 0
#define MAX_ITERATIONS 1
#define START_OF_PROGRAM do {
#define END_OF_PROGRAM } while(0)
#define BEGIN_NAMESPACE namespace {
#define END_NAMESPACE }
#define UNUSED(x) ((void)(x))
#define IGNORE_RETURN_VALUE(x) if (x) {}
#define LIKELY(x) (__builtin_expect(!!(x), 1))
#define UNLIKELY(x) (__builtin_expect(!!(x), 0))
#define PROGRAM_NAME "A+B Solver"
#define PROGRAM_VERSION "9.9.9"
#define PROGRAM_AUTHOR "Dr. Overkill"
#define PROGRAM_LICENSE "GPLv3+ with extra verbosity clause"
using namespace std;
int useless_func_1(int x) {
return x + 1;
}
int useless_func_2(int x) {
return x - 1;
}
int useless_func_3(int x) {
return x * 2;
}
int useless_func_4(int x) {
return x / 2;
}
int useless_func_5(int x) {
return x % 3;
}
int useless_func_6(int x) {
return x * x;
}
int useless_func_7(int x) {
return x + x;
}
int useless_func_8(int x) {
return x - x;
}
int useless_func_9(int x) {
return x * 10;
}
int useless_func_10(int x) {
return x / 10;
}
int useless_func_11(int x) {
return x + 100;
}
int useless_func_12(int x) {
return x - 100;
}
int useless_func_13(int x) {昨天 来自 浙江
0ok
3天前 来自 浙江
0ok
5天前 来自 浙江
0这是啥题?编号是多少?
1周前 来自 广东
0前面一眼AI,后面才是真的逻辑
1周前 来自 广东
0糖
2026-02-28 来自 广东
0666
2026-02-28 来自 广东
0编译错误: /usr/bin/ld: /usr/lib/gcc/x86_64-linux-gnu/9/../../../x86_64-linux-gnu/Scrt1.o: in function
_start': (.text+0x24): undefined reference tomain'
collect2: error: ld returned 1 exit status2026-02-28 来自 浙江
0我过了呀
2026-02-28 来自 浙江
1
/bangbangt
2026-02-28 来自 重庆
0唐
2026-02-28 来自 浙江
0史上最长代码
2026-02-28 来自 浙江
0你没极吧
2026-02-28 来自 广东
0啥沟槽东西
2026-03-01 来自 广东
0...
2天前 来自 浙江
0
666
2026-02-28 来自 浙江
0



















































有帮助,赞一个