六位数码管接在P0口上,以下为使第一个数码管,分时显示0,1,2,3的程序。请把程序补充完整。 #include
sbit wela=P2^7; sbit dula=P2^6; unsigned char code table[]={0x3f,0x06,0x5b,0x4f }; void delay() { unsigned 1 i=62470; 2 (--i); } void main() { unsigned char cishu; 3 { for(cishu=0;cishu<10; 4 ) { wela=1; // 位使能 5 wela=0; 6 // 段使能 P0=table[cishu]; dula=0; delay(); delay(); } } }