#include <iostream>
#include <cstring>
using namespace std;

struct Student {
    char name[20];
    int score;
    int grade;

    void Studentprint(){
        
    cout <<"이름: "<< s.name <<endl;
    cout <<"학년: "<< s.name <<endl;
    cout <<"점수: "<< s.name <<endl;
}
};

int main() {
    Student s;
    
    cin >> s.name;
    cin >> s.grade;
    cin >> s.score;

    Studentprint(s);
}

Embed on website

To embed this project on your website, copy the following code and paste it into your website's HTML: