首页 > 解决方案 > 类中的函数

问题描述

嗨,伙计们,我真的希望您能帮我解决这个问题……每当我在下面写下该代码时,它都会说“答案是”,但它没有给我答案……请给我写代码

#include <iostream>
using namespace std;
class steve{
public:

int adding(int a,int b){
int sum=a+b;
return sum;

}

};
int main(){

int a;
int b;
cout<<"enter a number you want to add"<<endl;
cin>>a;
cout<<"enter the other number"<<endl;
cin>>b;

cout<<"the answer is"<<endl;
steve steveObject;
steveObject.adding(a,b);

}

标签: c++functionclass

解决方案


您没有输出结果:

steve steveObject;
cout << "the answer is " << steveObject.adding(a,b) << endl;

推荐阅读