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/f08345215b26a8b93be9d73d1daf329c to your computer and use it in GitHub Desktop.
Save parzibyte/f08345215b26a8b93be9d73d1daf329c to your computer and use it in GitHub Desktop.
#include <iostream>
#include <math.h>
using namespace std;
int main()
{
double numero = 5;
double elevado = pow(numero, 3);
cout << "El numero " << numero << " elevado al cubo es " << elevado;
return 0;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment