I am trying to write my first OOP code in C++, but for some reason I am not getting any output. I am trying to create a class that contain a method getSquare() that accept an int n and returns the number squared. Can anyone tell me where I am doing wrong?
#include <iostream>
using namespace std;
class myClass {
public:
int square;
void getSqure(int n);
};
void myClass::getSqure(int n) {
int square = n * n;
}
int main(){
int n = 5;
myClass c;
c.getSqure(5);
cout << endl;
return 0;
}
Your
getSquare
function doesn't do anything, but just defines the variablesquare
(does not return it though). Make it return it as anint
, likethen do
and you'll have an output.