标签:style blog io color os for sp strong 数据
描述
已知鸡和兔的总数量为n,总腿数为m。输入n和m,依次输出鸡和兔的数目,如果无解,则输出“No answer”(不要引号)。
2 14 32 10 16
12 2 No answer
#include<iostream> using namespace std; int main() { int n; int a=0,b=0; int shu,leg; bool you =false; cin>>n; while(n--){ you = false; cin>>shu>>leg; for( a=0;a<100;a++){ for(b=0;b<100;b++){ if( (2 *a + 4 *b == leg) && (a +b == shu)) { cout<<a<<" "<<b<<endl; you=true; } } } if (you==false) cout<<"No answer"<<endl; } return 0; }
标签:style blog io color os for sp strong 数据
原文地址:http://www.cnblogs.com/imwtr/p/4069474.html