刘文捷(真的) • 4个月前
using namespace std; int main() {
int a,b,c;
for(int a=0;a<=100;a++){
for(int b=0;b<=100;b++){
for(int c=0;c<=100;c+=3){
if(5*a+3*b+c/3==100 && a+b+c==100){
cout<<a<<" "<<b<<" "<<c<<endl;
}
}
}
}
return 0;
}
评论:
请先登录,才能进行评论