...................
#include<iostream>using namespace std;
struct person{
int age ;
float weight,height;
char bloodtype;
};
person Mary;
int main()
{
cout<<"請輸入Mary's age";
cin>>Mary.age;
cin>>Mary.bloodtype;
cout<<"Mary's age anis"<<Mary.age;
system("pause");
return 0;
}
頁:
[1]

