执行以下程序,输出结果是( )。
int a = 5, b = 4, c = 0; if (a > 5) { c += a; if (b > 1) c += b; } else { if (b > 0) c = b * 2; } cout << c << endl;
0
8
9
5