You are viewing a single comment's thread. Return to all comments →
#include <iostream> #include <sstream> using namespace std; class Student{ private: int age; int standard; string first_name; string last_name; public: void set_age(int a){ age = a; } void set_standard(int s){ standard = s; } void set_first_name(string fn){ first_name = fn; } void set_last_name(string ln){ last_name = ln; } int get_age(){ return age; } string get_last_name(){ return last_name; } string get_first_name(){ return first_name; } int get_standard(){ return standard; } void to_string(){ cout<<age<<","<<first_name<<","<<last_name<<","<<standard; } }; int main() { int age, standard; string first_name, last_name; cin >> age >> first_name >> last_name >> standard; Student st; st.set_age(age); st.set_standard(standard); st.set_first_name(first_name); st.set_last_name(last_name); cout << st.get_age() << "\n"; cout << st.get_last_name() << ", " << st.get_first_name() << "\n"; cout << st.get_standard() << "\n"; cout << "\n"; st.to_string(); return 0; }
Seems like cookies are disabled on this browser, please enable them to open this website
Class
You are viewing a single comment's thread. Return to all comments →