Navigation Menu

Skip to content

Instantly share code, notes, and snippets.

@samir96
Created April 17, 2015 20:15
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save samir96/8fc5577e5602b50c8da1 to your computer and use it in GitHub Desktop.
Save samir96/8fc5577e5602b50c8da1 to your computer and use it in GitHub Desktop.
//Jorge Samir Godinez Lara/ A01630155
#include <iostream>
using namespace std;
#include <cmath>
long long superpower(long a, long b){
return pow(a,b);
}
int main(){
long num1=5;
long num2=2;
cout<<"The first number elvevate in second number is "<< superpower(num1,num2)<<endl;
return 0;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment