花狗

导航

 

2021年9月2日

摘要: #include <iostream> using namespace std; int main() { int day = 0; // 日期 int month = 0; // 月份 int year = 0; // 年份 int sum = 0; // 一年中的第几天 cin >> year 阅读全文
posted @ 2021-09-02 20:19 花狗 阅读(107) 评论(0) 推荐(0)
 
摘要: int main() { int t, a, b; cin >> t; vector<vector<int>> m; for (int i = 1; i < t; ++i) { vector<int> m1; cin >> a >> b; m1.push_back(a); m1.push_back( 阅读全文
posted @ 2021-09-02 11:36 花狗 阅读(33) 评论(0) 推荐(0)