标签: c++
int found = 0, count = 5; if (!found || --count == 0) cout << "danger" << endl; cout << "count = " << count << endl;
预期输出为danger,count = 4 为什么计数不减一?
danger
count = 4