解题思路:
贴个代码 不想写注释了
注意事项:
参考代码:
#include<stdio.h>
typedef struct node{
int a;
int b;
} L;
L A[1005];
int main(){
int n;
while(scanf("%d",&n)!=EOF){
int i,j;
int x[1005],y[1005];
for(i=0;i<n;i++){
scanf("%d %d",&A[i].a,&A[i].b);
}
i=0;j=0;
int q;
x[i]=1;y[j]=2;
while(x[i]!=y[j]){
for(q=0;q<n;q++){
if(A[q].a==x[i]){
x[++i]=A[q].b;
}
if(A[q].a==y[j]){
y[++j]=A[q].b;
}
}
}
if(i==j){
printf("You are my brother\n");
}
else if(i>j){
printf("You are my elder\n");
}
else{
printf("You are my younger\n");
}
}
return 0;
}
0.0分
1 人评分
C语言程序设计教程(第三版)课后习题3.7 (C语言代码)浏览:467 |
【偶数求和】 (C语言代码)浏览:588 |
The 3n + 1 problem (C语言代码)浏览:603 |
字符逆序 (C语言代码)浏览:506 |
A+B for Input-Output Practice (III) (C语言代码)浏览:594 |
剪刀石头布 (C++代码)浏览:1811 |
IP判断 (C语言代码)浏览:592 |
震宇大神的杀毒软件 (C语言代码)浏览:1162 |
生日日数 (C语言代码)浏览:1574 |
小O的乘积 (C++代码)浏览:796 |