阅读下面的程序;
#include<stdio.h>
void main()
{
int s;
scanf("%d",&s);
if(s<0||s>100) printf("Error.");
else
{
switch(s/20)
{
case 0:
case 1:
case 2:printf("%c",'D');
case 3:printf("%c",'C');break;
case 4:
case 5:
switch(s/45)
{
case 1:printf("%c",'B');break;
case 2:printf("%c",'C');break;
}
}
}
}
若运行该程序时从键盘输入45,则运行输出为( )
DCB
DCBA
D
DC