摘要:
实验任务1 源代码: 点击查看contestant.hpp #pragma once #include <<iomanip> #include <iostream> #include <string> struct Contestant { long id; // 学号 std::string na 阅读全文
posted @ 2025-12-21 23:02
王扁
阅读(9)
评论(1)
推荐(0)
代码1 #include<iostream> #include<string> #include<vector> #include<algorithm> template<typename T> void output(const T &c); void test1(); void test2(); 阅读全文