Revision history of "CPP/Math/Exponential"

From ProgrammingExamples
Jump to: navigation, search

Diff selection: Mark the radio boxes of the revisions to compare and hit enter or the button at the bottom.
Legend: (cur) = difference with latest revision, (prev) = difference with preceding revision, m = minor edit.

  • (cur | prev) 08:40, 23 June 2010Daviddoria (Talk | contribs). . (170 bytes) (+170). . (Created page with '==Exponential.cpp== <source lang="cpp"> #include <cmath> #include <iostream> int main() { std::cout << exp(4) << std::endl; //should be 54.598 return 0; } </source>')