以下哪段代码可以正确初始化一个包含3个元素的数组,分别代表“春节”、“端午”、“中秋”的天数?
int days[] = {3, 5, 1};
int days = (3, 5, 1);
days{3, 5, 1};
array days = [3, 5, 1];