CPP/Math/Exponential

From ProgrammingExamples
< CPP
Revision as of 08:40, 23 June 2010 by Daviddoria (Talk | contribs)

(diff) ← Older revision | Latest revision (diff) | Newer revision → (diff)
Jump to: navigation, search

Exponential.cpp

#include <cmath>
#include <iostream>
 
int main()
{
  std::cout << exp(4) << std::endl; //should be 54.598
  return 0;
}