解题思路: 按照题目意思,根据题目给出的函数完成相应的功能即可。
参考代码:
#include<iostream> #include<cstring> using namespace std; typedef struct { char name[21]; char num[11]; char sex; }Student; void readdata(Student stu[],int n) { for(int i=0;i<n;i++) cin>>stu[i].name>>stu[i].num>>stu[i].sex; } int findstudent(Student stu[],int n,char *data) { if (data==NULL) return -1; for(int i=0;i<n;i++) { if(strcmp(stu[i].name,data)==0 || strcmp(stu[i].num,data)==0) return i; } return -1; } void solve(Student stu[],int n,int m) { char x[21],y[21]; for(int i=0;i<m;i++) { cin>>x>>y; int x_k=findstudent(stu,n,x); int y_k=findstudent(stu,n,y); if(x_k!=-1 && y_k!=-1) { if(stu[x_k].sex!=stu[y_k].sex) cout<<"Y"<<endl; else cout<<"N"<<endl; } else cout<<"N"<<endl; } } int main() { int n,m; Student stu[1010]; cin>>n; readdata(stu,n); cin>>m; solve(stu,n,m); return 0; }
0.0分
8 人评分
数列排序 (C语言代码)浏览:858 |
WU-小九九 (C++代码)浏览:1713 |
校门外的树 (C语言代码)浏览:733 |
用筛法求之N内的素数。 (C语言代码)浏览:685 |
简单的a+b (C语言代码)浏览:878 |
求圆的面积 (C语言代码)浏览:1756 |
核桃的数量 (C语言代码)浏览:726 |
C语言程序设计教程(第三版)课后习题10.1 (C语言代码)浏览:571 |
2005年春浙江省计算机等级考试二级C 编程题(2) (C语言代码)浏览:636 |
The 3n + 1 problem (C语言代码)浏览:550 |