#include <iostream>
using namespace std;
struct Student {
char name[20];
int age;
int height;
};
int main() {
Student s;
cin >> s.name;
cin >> s.age;
cin >> s.height;
cout << "이름: " << s.name << endl;
cout << "나이: " << s.age << endl;
cout << "키: " << s.height << endl;
return 0;
}
To embed this project on your website, copy the following code and paste it into your website's HTML: