提交时间:2025-05-16 20:06:13

运行 ID: 322470

#include<iostream> using namespace std; int main(){ for(int i=2;i<=8;i+=2){ for(int j=4;j>=1;j--){ if(i*10+j*20==100) cout<<i<<" "<<j<<endl; } } return 0; }