2024年10月9日 16:24

This commit is contained in:
许大仙 2024-10-09 08:24:16 +00:00
parent e67282dfa4
commit 58f9d0b791

View File

@ -1073,10 +1073,10 @@ int main() {
```c
#include <stdio.h>
#if _WIN32 // 如果是windows平台, 就引入 <windows.h>
#if _WIN32 // 如果是 Windows 平台, 就引入 <windows.h>
#include <windows.h>
#define SLEEP(t) Sleep(t * 1000)
#elif __linux__ // 如果是linux平台, 就引入<unistd.h>
#elif __linux__ // 如果是 Linux 平台, 就引入<unistd.h>
#include <unistd.h>
#define SLEEP sleep
#endif