窮舉算法——雞兔同籠問題

#include<stdio.h> int qiongju(int head,int foot,int *chicken,int *rabbit) { int re,i,j; re=0; for(i=0;i<=head;i++) { j=head-i; if(i*2+j*4==foot) { re=1; *chicken=i; *rabbit=j; }
相關文章
相關標籤/搜索