提交时间:2025-05-16 18:57:38
运行 ID: 322376
#include<iostream> using namespace std; int main(){ for(int i=1;i<=4;i++){ for(int j=1;j<=10;j++){ if(i*8+j*3==40) cout<<i<<" "<<j<<endl; } } return 0; }