为什么最后判断的时候不是
if(month>=3) { j+=i; } else { j=j;
而是大于3
if(month>=3) 如果你month是3 执行if部分的程序
if(month>3) 如果你month是3 执行else部分的程序