...1900至2000年间有多少闰年,分别为多少?用matlab 并运行出结果 辛苦...
发布网友
发布时间:2024-11-01 19:10
我来回答
共1个回答
热心网友
时间:2024-11-01 19:07
法一:自己写函数
LoopYear=[];
for year=1900:2000
if mod(year,400)==0 || (mod(year,100)~=0 && mod(year,4)==0)
LoopYear=[LoopYear,year];
end
end
LoopYear
法二:用Matlab的函数
year=1900:2000;
year(yeardays(year)==366)