Arduino C语言,部分程序如下,当变量i的值为85时,串口监视器输出结果是?( )
if (i < 60)
Serial.print('A');
else if ( i < 80)
Serial.print('B');
else
Serial.print('C');
A
B
C
ABC