请各位大侠看看有什么问题?

2019-03-25 19:12发布

#include<pic.h>
#define uchar unsigned char
#define uint  unsigned int
__CONFIG(0x3B31);
void delay_ms(uint z)//提供ms级延时函数,z ms
{
uchar x;
uint y;
for(x=110;x>0;x--)
  for(y=z;y>0;y--);
}
void main()
{
TRISB=0xff;//11111111
TRISC=0;
if(RB0==0);
delay_ms(10);
if(RB0==0)
{
RC0=1;
}
while(1);
} 此帖出自小平头技术问答
友情提示: 此问题已得到解决,问题已经关闭,关闭后问题禁止继续编辑,回答。