⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 c1.c

📁 IDE程序SoftwareS3CEV4005_c1
💻 C
字号:
/*********************************************************************************************
* File:	c1_a.c
* Author:	embest	
* Desc:	
* History:	
*********************************************************************************************/
void delay(int times);

//*----------------------------------------------------------------------------
//* Function Name       : _start
//* Input Parameters    : none
//* Output Parameters   : none
//*----------------------------------------------------------------------------
_start()
{
	int i=5;
	
	for(;;)
	{
		delay(i);
	}
}

//*----------------------------------------------------------------------------
//* Function Name       : delay
//* Input Parameters    : times
//* Output Parameters   : none
//*----------------------------------------------------------------------------
void delay(times)
{
	int i, j=0;
	
	for(i=0; i<times; i++)
	{
		for(j=0; j<10; j++)
		{
		}
	}

}

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -