已解决 被禁言 王奥翔 初级守护 #include<iostream> using namespace std; int main() { int X,A,B; cin>>X>>A>>B; for(int i=X/A;i>=1;i--) for(int j=X/B;j>=1;j--) { if(i*A+j*B==X) { cout<<i<<" "<<j<<endl; } } return 0; }