• 2022-07-01
    下面代码可以实现8个指示灯以走马灯方式向左循环。 temp = led[7]; for(i=7;i>0;--i) led[i] = led[i-1]; led[0] = temp;[/i]
    A: 正确
    B: 错误