Network Security Internet Technology Development Database Servers Mobile Phone Android Software Apple Software Computer Software News IT Information

In addition to Weibo, there is also WeChat

Please pay attention

WeChat public account

Shulou

How to realize the effect of Electronic clock in C++

2025-03-31 Update From: SLTechnology News&Howtos shulou NAV: SLTechnology News&Howtos > Development >

Share

Shulou(Shulou.com)05/31 Report--

Today Xiaobian to share with you how C++ to achieve electronic clock effect related knowledge points, detailed content, clear logic, I believe most people still know too much about this knowledge, so share this article for everyone to refer to, I hope you read this article after some harvest, let's learn about it together.

This is accurate to the second, because there is accuracy error and it is relatively simple to obtain the initial time from the computer, so there will be a large error in running for a period of time.

code

#include#include#includeusing namespace std;class Clock{private: int hour, minute, second; int year, month, day,week;public: Clock() {}; void SetTime1(int _Hour, int _Mins, int _Sec){//initial time function hour = _Hour; minute = _Mins; second = _Sec; } void SetTime2(int _year, int _month, int _day,int _week) {//initial time function year = _year; month = _month; day = _day; week = _week; } void ShowTime() { cout

Welcome to subscribe "Shulou Technology Information " to get latest news, interesting things and hot topics in the IT industry, and controls the hottest and latest Internet news, technology news and IT industry trends.

Views: 248

*The comments in the above article only represent the author's personal views and do not represent the views and positions of this website. If you have more insights, please feel free to contribute and share.

Share To

Development

Wechat

© 2024 shulou.com SLNews company. All rights reserved.

12
Report