永发信息网

这段代码哪里错了?

答案:1  悬赏:50  手机版
解决时间 2021-07-25 18:12
  • 提问者网友:你独家记忆
  • 2021-07-24 21:25

#include <iostream>
using namespace std;
class ceshi
{

public:
void output(int year)
{

cout<<year;

}
}
int main()
{

ceshi A;
int year;
cin>>year;
A.output(year);
return 0;
}

改正一下,并说明为什么错了?

最佳答案
  • 五星知识达人网友:一叶十三刺
  • 2021-07-24 23:00

#include <iostream>
using namespace std;
class ceshi
{


public:


int year;
void output( )
{


cout<<year;


}


void intput( )


{


cin>>year;
}
int main()
{


ceshi A;
A.intput()
A.output();
return 0;
}

我要举报
如以上回答内容为低俗、色情、不良、暴力、侵权、涉及违法等信息,可以点下面链接进行举报!
点此我要举报以上问答信息
大家都在看
推荐资讯