2022年12月9日
摘要: #include<iostream> using namespace std; int main() { ios::sync_with_stdio(false); cin.tie(0);cout.tie(0);//关闭流同步后cin与scanf接近 //浮点数cin会慢 int a,b; cin>> 阅读全文
posted @ 2022-12-09 15:44 ruoye123456 阅读(31) 评论(0) 推荐(0)
摘要: time.h #include<iostream> using namespace std; class Time { private: int hour; int minute; int second; public: void showtime(); Time(int h = 0, int m 阅读全文
posted @ 2022-12-09 00:44 ruoye123456 阅读(25) 评论(0) 推荐(0)