零碎知识点

//延时函数
void delay()

{
  i = 10000;
  while(i--);
}
void delays(int d)
{
    while(d--);
}
原文地址:https://www.cnblogs.com/kinson/p/6807412.html