执行以下程序,输出的结果是( )。
int a = 6, b = 3, c = 10; int d = a / b; int e = 2 * a - c; if (d < e) { e += b; } else { e *= d; } cout << e << endl;
2
3
4
5