Azzera filtri
Azzera filtri

how to iterate powers? example 5^5 = 5*5*5*5*5

2 visualizzazioni (ultimi 30 giorni)
Ricardo David
Ricardo David il 25 Ago 2022
Risposto: Chunru il 25 Ago 2022
%potencia
x^n==input("introducir numero");
disp(x^n)
while x^n<n
x^n=(x^n)^2
end

Risposte (1)

Chunru
Chunru il 25 Ago 2022
% potencia
% x=input("introducir numero");
x = 5;
n=1;
xn = 1;
while n<=5
xn = xn * x;
fprintf("x^%d = %d\n", n, xn);
n = n+1;
end
x^1 = 5 x^2 = 25 x^3 = 125 x^4 = 625 x^5 = 3125

Categorie

Scopri di più su MATLAB in Help Center e File Exchange

Tag

Prodotti

Community Treasure Hunt

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

Start Hunting!

Translated by