Wednesday, March 5, 2014

C++ 2 to the power 3 (Exponent Function)

#include<iostream>
#include<cmath>
using namespace std;
int main()
{
cout<<pow(2,3)<<endl;
return 0;
}

No comments :

Post a Comment