单选题 执行以下程序段后,整型变量C的值为______。
a=24
b=328
Select Case b/10
Case 0
c=a*10+b
Case 1 to 9
c=a*100+b
Case 10 to 99
c=a*10000+b
End Select

【正确答案】 C
【答案解析】