#include<iostream>
using namespace std;
int main()
{
int x,y,z;
int a,b,c;
int i;
for(x=0;x<=50;x+=10)
{
for(y=0;y<=50;y+=5)
{
for(z=0;z<=50;z++)
{
if(x+y+z==50)
{
i++;
a=x/10;
b=y/5;
c=z;
cout <<i<<endl;
cout<<"1元:"<<a<<" 5角:"<<b<<" 1角:"<<c<<endl;
}
}
}
}
return 0;
}
标签:std,10,includeusing,cout,17,int From: https://www.cnblogs.com/guozi6/p/17389252.html