Skip to content

Instantly share code, notes, and snippets.

@parzibyte
Created August 7, 2019 22:22
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 parzibyte/86eb7e7db26f7977f143b05d408a5566 to your computer and use it in GitHub Desktop.
Save parzibyte/86eb7e7db26f7977f143b05d408a5566 to your computer and use it in GitHub Desktop.
#include <iostream>
#include <math.h>
using namespace std;
int main()
{
double numero = 2;
double elevado = pow(numero, 32);
cout << "El numero " << numero << " elevado a la potencia 32 es " << elevado;
return 0;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment