加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
该仓库未声明开源许可证文件(LICENSE),使用请关注具体项目描述及其代码上游依赖。
克隆/下载
main.c 480 Bytes
一键复制 编辑 原始数据 按行查看 历史
Bruce 提交于 2020-12-12 21:22 . nidaye
#include <stdio.h>
#include <stdlib.h>
#include <time.h>
#include <windows.h>
#include"fsm.h"
int main(void)
{
int num;
printf("system is running\r\n");
int usr_time;
usr_time = GetTickCount();
while(1)
{
num = rand() % 4;
if(GetTickCount() - usr_time > 50)
{
printf("num = %d\r\n",num);
usr_time = GetTickCount();
main_fsm_run(num);
GetTickCount();
}
}
return 0;
}
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化