using fprintf to display multiple values

11 Ansichten (letzte 30 Tage)
carlton letts
carlton letts am 6 Jun. 2020
Beantwortet: Ameer Hamza am 7 Jun. 2020
i need help with displaying my factorial results
it should be displayed as: exanple The factorial of 3 is 6
heres my code
clear
clc
%the input numbers you want the factorial for%
numlist = input ( ' enter a list of numbers');
numbers = length (numlist);
results =zeros (1, numbers);
for i = 1: numbers;
for ii = i;
facn= prod(1:numlist(i))
fprintf(' The factorial of %.0f is %.0f\n\n',numbers,facn)
end
end

Akzeptierte Antwort

Ameer Hamza
Ameer Hamza am 7 Jun. 2020
Change the line to
fprintf(' The factorial of %.0f is %.0f\n\n',numlist(i),facn)
% ^ use numlist(i) here.

Weitere Antworten (0)

Kategorien

Mehr zu Get Started with MATLAB finden Sie in Help Center und File Exchange

Produkte

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!

Translated by