题目:
程序延时
源代码:
#include <iostream>
#include <ctime>
int main()
{
using namespace std;
cout << "请输入你想要延迟的时间: ";
float secs;
cin >> secs;
clock_t delay = secs * CLOCKS_PER_SEC;
cout << "延迟中" << endl;
clock_t start = clock(); //获得
while (clock() - start < delay); //浮点数不能用clock() - start != delay因为浮点数进度原因,这个等式永远不会相等
cout << "延迟结束" << endl;
return 0;
}
演示效果:
如果朋友你感觉文章的内容对你有帮助,可以点赞,关注文章和专栏以及关注我哈,嘿嘿嘿我会定期更新文章的,谢谢朋友你的支持哈