打卡13

2.11换分币

 相当于x张10,y张5,z张1,10x+5y+z=50;

#include<bits/stdc++.h>
using namespace std;
int main()
{
for(int i=0;i<=5;i++)
{
for(int j=0;j<=10;j++)
{
if(i*10+j*5<=50)
{
cout<<i<<' '<<j<<' '<<50-i*10-j*5<<endl;
}
}
}
}

posted on 2023-04-26 16:27  临江柔  阅读(10)  评论(0编辑  收藏  举报