[ create a new paste ] login | about

Link: http://codepad.org/gzNDGU7V    [ raw code | output | fork ]

hmurcia - C++, pasted on Jul 10:
1
2
3
4
5
6
7
8
#include <iostream>
using namespace std;

const double NUMERO_E = exp(1);

int main() {
    cout << "Numero e = " << NUMERO_E;
}


Output:
1
Numero e = 2.71828


Create a new paste based on this one


Comments: