题解列表

筛选

最多的水-题解(C语言代码)

摘要:只是参考别人的方法写了个C语言版本的而已,仅供参考 #include int a[100000]; int max(int a,int b){ return a>=b?a:b; // 返……