提交时间:2025-07-18 09:59:35

运行 ID: 334374

#include<bits/stdc++.h> using namespace std; int main(){ for(int i=1;i<=100;i++){ for(int j=100;j>=1;j--){ if(i*10+j*20==100){ cout<<i<<" "<<j<<endl; } } } return 0; }