[ create a new paste ] login | about

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

C++, pasted on Feb 17:
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
#include <iostream>

using namespace std;

class Math {
private:
int x;
int y;
public:
void Plus(int x, int y) {
int result = x + y;
}
};

int main() {
	
Math Go;
Go.Plus(10, 12);

return 0;
}


Output:
No errors or program output.


Create a new paste based on this one


Comments: