一次性计时器

Name: 一次性计时器

Copyright:No

Author: 袁神派蒙

Date: 22/05/24 20:40

Description: 一次性的计时器(by 袁神派蒙)

直接上代码:

cpp 复制代码
/*
	Name: 一次性计时器 
	Copyright:No 
	Author: 袁神派蒙
	Date: 22/05/24 20:40
	Description: 一次性的计时器(by 袁神派蒙) 
*/
#include<bits/stdc++.h>
#include<windows.h>
using namespace std;
int time(int a){
	if (a < 10) {
		cout << "0" << a ;
	}
	else {
		cout << a ;
	}
}
int main(){
	int T , m = 0 , s = 0 ;
	char c ;
	cout << "计时器:" ;
	time (m);
	cout << ":" ;
	time (s);
	cout << endl ;
	//------------------
	cout << "选择时长(分):" ;
	cin >> m;
	system ("cls") ;
	cout << "计时器:" ;
	time (m) ;
	cout << ":" ;
	time (s) ;
	cout << endl ;
	//------------------
	cout << "选择时长(秒):" ;
	cin >> s;
	system ("cls") ;
	cout << "计时器:" ;
	time (m) ;
	cout << ":" ;
	time (s) ;
	cout << endl;
	//------------------
	cout << "键入任意键开始" ;
	cin >> c;
	T = m * 60 + s ;
	while (T --) {
		s -- ;
		system ("cls") ;
		cout << "计时器:" ;
		time (m) ;
		cout << ":" ;
		if (s == -1){
			s = 59;
			m --;
		}
		time (s) ;
		Sleep (1000) ;
	}
	system ("cls") ;
	cout << "计时器:计时结束!";
	return 0; 
}
/*此为原创,翻版必究!*/
相关推荐
懒羊羊大王&21 小时前
模版进阶(沉淀中)
c++
owde21 小时前
顺序容器 -list双向链表
数据结构·c++·链表·list
GalaxyPokemon1 天前
Muduo网络库实现 [九] - EventLoopThread模块
linux·服务器·c++
W_chuanqi1 天前
安装 Microsoft Visual C++ Build Tools
开发语言·c++·microsoft
tadus_zeng1 天前
Windows C++ 排查死锁
c++·windows
EverestVIP1 天前
VS中动态库(外部库)导出与使用
开发语言·c++·windows
胡斌附体1 天前
qt socket编程正确重启tcpServer的姿势
开发语言·c++·qt·socket编程
GalaxyPokemon1 天前
Muduo网络库实现 [十] - EventLoopThreadPool模块
linux·服务器·网络·c++
守正出琦1 天前
日期类的实现
数据结构·c++·算法
ChoSeitaku1 天前
NO.63十六届蓝桥杯备战|基础算法-⼆分答案|木材加工|砍树|跳石头(C++)
c++·算法·蓝桥杯