摘要: #include<iostream> using namespace std; template <class T> T sum(T* array, int size = 0) { T total = 0; for (int i = 0; i < size; i++) total += array[ 阅读全文
posted @ 2023-05-11 21:58 平安喜乐× 阅读(15) 评论(0) 推荐(0)