摘要: 模板与类(对象数组) #include<bits/stdc++.h>using namespace std;template<class T>T maxn(T x[],int len){ int i=1; T max=x[0]; for(i;i<len;i++) { if(max<x[i]) max 阅读全文
posted @ 2023-05-04 21:48 mo寒流xing 阅读(25) 评论(0) 推荐(0)