Simple implementation-console small clock

Source: Internet
Author: User
// Change the window title system. console. title = "entering information to the console cyclically"; system. console. required wheight = 3; // adjust the height of system. console. required wwidth = 37; // adjust the width of the console. backgroundcolor = consolecolor. green; // background color console. foregroundcolor = consolecolor. black; // foreground console. clear (); // clear the information in the console, <-- to be placed after the set color --> for (;) // loop output, achieve the dynamic clock effect {// output the system time console. writeline ("current date is: \ n {0}", datetime. now. tostring ("dd hh: mm: SSS"); system. threading. thread. sleep (1000); // thread sleep for 1 second console. clear ();}

The effect is as follows:

 

Simple implementation-console small clock

Related Article

Contact Us

The content source of this page is from Internet, which doesn't represent Alibaba Cloud's opinion; products and services mentioned on that page don't have any relationship with Alibaba Cloud. If the content of the page makes you feel confusing, please write us an email, we will handle the problem within 5 days after receiving your email.

If you find any instances of plagiarism from the community, please send an email to: info-contact@alibabacloud.com and provide relevant evidence. A staff member will contact you within 5 working days.

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.