Q:

Ruby program to find the power of a number without using library function

belongs to collection: Ruby Basic Programs

0

Program/Source Code:

The source code to find the power of a number without using the library function is given below. The given program is compiled and executed successfully.

All Answers

need an explanation for this answer? contact us directly to get an explanation for this answer

Program/Source Code:

The source code to find the power of a number without using the library function is given below. The given program is compiled and executed successfully.

# Ruby program to find the power of a number 
# without using library function

print "Enter number: ";
number = gets.chomp.to_i;  

print "Enter power: ";
power = gets.chomp.to_i;  

i=0;
answer=number;
increment=0;

if power == 0
    print "Exception: Divid By Zero";
else
  while i<power
     j=1;
     while j<number
        answer += increment;
        j=j+1;
     end
     increment = answer;
     i=i+1;
  end
  print "Result is: ",answer;
end

Output:

Enter number: 5
Enter power: 3
Result is: 125

Explanation:

In the above program, we read an integer number and its power from the user. Then we calculated the power of the given number without using any library function and printed the result.

need an explanation for this answer? contact us directly to get an explanation for this answer

total answers (1)

Ruby Basic Programs

This question belongs to these collections

Similar questions


need a help?


find thousands of online teachers now
Ruby program to divide a number from another numbe... >>
<< Ruby program to read the height of a person and th...