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.
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.
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.
Output:
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