[ create a new paste ] login | about

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

puu009 - C++, pasted on Jul 12:
1
2
3
4
5
6
7
8
#include <iostream>

int main()
{
    cout << 2 << '+' << 3 << '=' << 2 + 3 << endl;
    cout << "π=" << 3.14159 << "..." << endl;
    return 0;
}


Output:
1
2
2+3=5
π=3.14159...


Create a new paste based on this one


Comments: