- 6
Fill in the blank to output 5 raised to the 3rd power
I need the answer
7 ответов
+ 1
print(5**3)
5*5*5=125
0
**
0
answer please me specal
- 1
Fill in the blank to output 5 raised to the 3rd power. (5blank3)
Answer: (5**3)
The blank is **
- 2
In c:
#include<math.h>
int main{
int no=5,power=3,t;
t=pow(no,power);
printf("%d",t);
return 0;
}
it will give output as 125
Thank you!.
- 2
Abdalla,
Please, tag a relevant language, not code like such `print( 3 ... 5 )` above ☝
- 4
Fill in the blank to output 5 raised to the 3rd power.
print(5
3)