X^n calculation

14 views (last 30 days)
ceren uçak
ceren uçak on 1 Jun 2021
Commented: James Tursa on 1 Jun 2021
Calculate the n th power of a given number with loops

Answers (1)

Asmit Singh
Asmit Singh on 1 Jun 2021
%Number is the base number
number = 5;
ans = 1;
% n is the power to which the number needs to be raised
n = 3;
while(n~=0)
ans = ans*number;
n=n-1;
end
  1 Comment
James Tursa
James Tursa on 1 Jun 2021
@Asmit Singh Please do not post complete answers to homework questions.

Sign in to comment.

Categories

Find more on Loops and Conditional Statements in Help Center and File Exchange

Products

Community Treasure Hunt

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

Start Hunting!