#include
unsigned char code table[10]={0xc0,0xf9,0xa4,0xb0,0x99,0x92,0x82,0xf8,0x80,0x90,};// 显现数值表0-9
void Delay(unsigned int t);
void main (void)
{
unsigned char i;
P1 = 0x01;
while (1)
{
for(i=0;i<10;i++) //参加 for循环,标明for循环大括号中的程序循环履行10次
}
}
void Delay(unsigned int t)
{
}