• 2022-06-10
    以下说法错误的是void main(){ state=1; while(1) { switch(state) { case 0x01:setup();break; case 0x02:run();break; } }}void setup(){ Buzzer=1;Led=1;while(1) { if(Key==0){state=0x02;goto exit;} }exit:return;}void run(){ Buzzer=0;Led=0; while(1) { if(Key==0){state=0x01;goto exit;} } exit:return;}
    A: 共有两个状态
    B: Buzzer=1;Led=1;实现声光报警
    C: Buzzer=1;Led=1;全停
    D: if(Key==0){state=0x01;goto exit;} 按下按键,转到第一个状态