提交时间:2025-05-13 20:14:24
运行 ID: 322039
#include<iostream> using namespace std; int main(){ for(int i=1;i<=100/10;i++){ for(int j=1;j<=100/20;j++){ if(i*10+j*20==100) cout<<i<<" "<<j<<endl; } } return 0; }