Effacer les filtres
Effacer les filtres

using fprintf to display multiple values

11 vues (au cours des 30 derniers jours)
carlton letts
carlton letts le 6 Juin 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

Réponse acceptée

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

Plus de réponses (0)

Catégories

En savoir plus sur Get Started with MATLAB dans Help Center et File Exchange

Produits

Community Treasure Hunt

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

Start Hunting!

Translated by