#include<stdio.h> int main(void){ //初始化 //int ages[3]={10,39,50}; int ages[3]={101,79,102}; int count=0; //遍历 for(int i=0;i<3;i++){ for(int j=0;j<3;j++){ /* 自己不给自己发请求 */ if(i==j){ continue; } else{ /* 满足以下条件就可以发送请求 1.age(A)>=age(B) 2.age(A)/2+7<age(B) */ if(ages[i]>=ages[j] && ages[i]/2+7<ages[j]) { /* 3.如果age(A)>100,则age(B)也必须大约100 */ if(ages[i]>100 && ages[j]>100){ printf("第%d个:%d->%d\n",++count,ages[i],ages[j]); } else{ continue; } } /* 不满足的直接略过 */ else{ continue; } } } } }
好友请求
2023-10-18 18:31:58
上一篇:开源MANO软件盘点
下一篇:Debian配置cscope