Matlab 1-100种能被3整除的数字和

1-100种能被3整除的数字和

x=1:100;
s=0;   %初始值为0,用于存放和
for i=1:100
    if mod(x(i),3)==0
        s=s+x(i);
    end
end
s

你可能感兴趣的:(Matlab)