Please Login in order to post a comment
#include <cmath> #include <cstdio> #include <vector> #include <iostream> #include <algorithm> using namespace std; /* add code for struct here. */ struct Student { int age; string first_name; string last_name; int standard; }; int main() { Student st; cin >> st.age >> st.first_name >> st.last_name >> st.standard; cout << st.age << " " << st.first_name << " " << st.last_name << " " << st.standard; return 0; }
struct Student{ int age; string first_name; string last_name; int standard; };
#include <cmath> #include <cstdio> #include <vector> #include <iostream> #include <algorithm> using namespace std; struct Student { int age; string first_name; string last_name; int standard; }; int main() { Student st; cin >> st.age >> st.first_name >> st.last_name >> st.standard; cout << st.age << " " << st.first_name << " " << st.last_name << " " << st.standard; return 0; }
#include <cmath> #include <cstdio> #include <vector> #include <iostream> #include <algorithm> using namespace std; /* add code for struct here. */ struct Student{ int age; string first_name; string last_name; int standard; }; int main() { Student st; cin >> st.age >> st.first_name >> st.last_name >> st.standard; cout << st.age << " " << st.first_name << " " << st.last_name << " " no need to thank me !!! :) << st.standard; return 0; }
struct Student{ int age; string first_name; string last_name; int standard; //default cons Student(){ this->age=0; this->standard=0; this->first_name=" "; this->last_name=" "; } //parametrized Student(int age,string fname,string lname,int stan){ this->age=age; this->standard=stan; this->first_name=fname; this->last_name=lname; } }; int main() {
int age,standard; string fname,lname; cin>>age>>fname>>lname>>standard; Student st1(age,fname,lname,standard); cout<<st1.age<<" "<<st1.first_name<<" "<<st1.last_name<<" "<<st1.standard<<"\n"; return 0;
}
Seems like cookies are disabled on this browser, please enable them to open this website
struct Student{ int age; string first_name; string last_name; int standard; };
struct Student{ int age; string first_name; string last_name; int standard; //default cons Student(){ this->age=0; this->standard=0; this->first_name=" "; this->last_name=" "; } //parametrized Student(int age,string fname,string lname,int stan){ this->age=age; this->standard=stan; this->first_name=fname; this->last_name=lname; } }; int main() {
}