第一次玩,全都不会,照课本做的,希望大神指点。程序在这,可以正常跑起来,很激动啊
#include<reg51.h>
#define uchar unsigned char
uchar tab[]={0xfc,0xf9,0xf3,0xe7,0xcf,0x9f,0x3f,0x9f,0xcf,0xe7,0xf3,0xf9,0xfc};
void delay()
{
uchar i,j;
for(i=0;i<255;i++)
for(j=0;j<255;j++);
}
void main()
{
uchar i;
while(1)
{
for(i=0;i<13;i++)
{
P1=tab[i];
delay();
}
}
}
|