Friday, January 1, 2021

Structs | HackerRank | C++ | Solution | Color The Code



Problem : https://www.hackerrank.com/challenges/c-tutorial-struct/problem

Solution :

#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;
}

No comments:

Post a Comment