0
How to write the code which uses exponent operators??
3 Antworten
+ 1
std::pow method available in cmath header
+ 1
#include <iostream>
#include <cmath>
using namespace std;
int main() {
cout<<pow(2,3);
return 0;
}
0
can you write the whole code??