问题描述:输入一个正整数 N,求 1! + 2!+3!+ ...+ N!的和。 function [ s ] = T5( N ) m=1;s=0; for i=1:N m=m*i; s=s+m; end end