📄 factorl.m
字号:
function [x]=factorl(i)
%factorl(i) gives the factorial of the nearest integer to number 'i'
%'i' should be an integer so we will round it to the nearest one
x=round(i);
if x>2
for j=x-1:-1:2
x=x*j;
end
end
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -