类和对象

#include

#include

using namespace std;

class Student {

private:

int id;

string name;

int english;

int program;

int math;

public:

void setInformation(int id, const string& name, int english, int program, int math) {

this->id = id;

this->name = name;

this->english = english;

this->program = program;

this->math = math;

}

void showInformation() const {

cout << "ID: " << id << ", Name: " << name << ", English: " << english << ", Programming: " << program << ", Math: " << math << endl;

}

};

int main() {

Student c;

int id, english, program, math;

string name;

cin >> id >> name >> english >> program >> math;

c.setInformation(id, name, english, program, math);

c.showInformation();

return 0;

}

全部评论

相关推荐

01-21 03:20
门头沟学院 Java
热爱敲代码的程序媛:大家提的都是简历上的建议哈哈。肯定能找到满意的工作,你只需要秋招过程中多跟秋招的大家保持沟通交流,补短板,同时为秋招的大家提供一些力所能及的帮助,面试笔试的时候实事求是,心态放稳就行。以上这些做到了,那根据你简历的内容一定能找到满意的工作。找工作既看实力,又看运气。多磨炼技能,精进专业能力,同时多帮助周边的同学积累好运,关键时候自然如有神助。
点赞 评论 收藏
分享
2024-12-10 05:47
天津外国语大学 Java
点赞 评论 收藏
分享
评论
点赞
收藏
分享

创作者周榜

更多
牛客网
牛客企业服务