如下程序
int main() { float a = 1; cout << boolalpha << ((int)a == (int &)a); float b = 0; cout << boolalpha << ((int)b == (int &)b); }
该程序输出结果为()