摘要: A 明显强度上来了啊。 直接全化成分钟做,然后把计算结果转化成小时和分钟即可。 点击查看代码 //24 * 60 = 1440 #include <bits/stdc++.h> using namespace std; namespace steven24 { int d[3], h[3], m[3 阅读全文
posted @ 2025-10-23 15:00 Steven24 阅读(4) 评论(0) 推荐(0)
摘要: A 对 \(2\) 取模即可。 点击查看代码 #include <bits/stdc++.h> using namespace std; namespace steven24 { void main() { int x; cin >> x; x % 2 ? cout << "odd\n" : cou 阅读全文
posted @ 2025-10-23 14:28 Steven24 阅读(1) 评论(0) 推荐(0)