题解 | #Old Bill#
Old Bill
https://www.nowcoder.com/practice/17a30153e092493e8b4d13f321343927
#include<cstdio> #include<iostream> using namespace std; int main() { int n; int x,y,z; cin>>n; cin>>x>>y>>z; int a,b; int per; int resulta; int resultb; int max=0; for(a=1;a<=9;a++) { for(b=0;b<=9;b++) { int total=a*10000+x*1000+y*100+z*10+b; if(total%n==0){ per=total/n; if(per>max){ max=per; resulta=a; resultb=b; } } } } if(max==0) { cout<<0<<endl; } else cout<<resulta<<' '<<resultb<<' '<<max<<endl; return 0; }
这个题可能是我比较菜吧,首先关键点在于,每只火鸡的价格是整数,这点用求余=0来表示。再者,就是计算出符合条件的per火鸡的价格,求出所有符合条件的最大值,在这其中要分辨出a b max是谁来。
我最开始只会自己输出max值,却不知道此时使max最大的a b怎么表示出来,哈哈哈哈哈太傻了实在是!!!
直接在循环体中表示出来就好了啊啊啊啊!!!!!