📄 h0805.c
字号:
#include <time.h>
#include <stdio.h>
#include <dos.h>
#include <conio.h>
int main(void)
{
time_t first, second;
clrscr();
/* Gets system time */
first = time(NULL);
/* Waits 2 secs */
delay(2000);
/* Gets system time again */
second = time(NULL);
printf("The difference is: %f seconds\n",difftime(second,first));
getch();
return 0;
}
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -