下面程序输出结果是什么?
struct Book { string title; int pages; }; int main() { Book books[2] = {{"Math", 120}, {"Science", 150}}; cout << books[1].title; return 0; }
Math
Science
120
150