Answers for "The C++ code given below should print the value of a number to a power. The number and power are entered by the user."

C++
1

how to write something in power of a number in c++

#include <iostream>
#include <cmath>
using namespace std;
int main(){
  cout<<pow(10,2);
  return 0;
}
Posted by: Guest on December-02-2020

Code answers related to "The C++ code given below should print the value of a number to a power. The number and power are entered by the user."

Browse Popular Code Answers by Language