单项选择题以下能正确输出字符a的语句是______。
单项选择题有以下程序:#include <stdio.h>main(){ int a=1,b=0;for(;a<5;a++){ if(a%2==0)break;b+=a;}printf( %d n ,b);}程序的运行结果是______。