<nclude<iostream#
using namespace std;
struct st{
string name;
int age;
float height;
float weight;
int score;
};
int main(){
int A [] ={10,20,30,40};
float B =3.14;
st student[100];
for(int i =0; i<3;i++){
cout << "Enter Student[" << i <<"] name : " ;
cin >> student[i].name;
cout << "Enter Student age : " ;
cin >> student[i].age;
cout << "Enter Student height : " ;
cin >> student[i].height;
cout << "Enter Student score : " ;
cin >> student[i].score;
}
for (int i =0; i< 3; i++){
if(student[i].score >= 50){
cout << "Name = " << student[i].name << endl;
cout << "age = " << student[i].age << endl;
cout << "heiht = " << student[i].height << endl;
cout << "score = " << student[i].score << endl;
cout <<"============================================" <<endl;
}
}
return 0;
}