楼主 帮你修改了下
#include<iostream.h>
void main()
{
int a,b,c,d,e,f,j;int count=0;
count=0;
for(a=1;a<=2;a++)
{
for(b=1;b<=5;b++)
{
for(c=1;c<=10;c++)
{
for(d=1;d<=20;d++)
{
for(e=1;e<=50;e++)
{
for(f=1;f<=100;f++)
{
if((a+b+c+d+e+f==100)&&(1*f+2*e+5*d+10*c+20*b+50*a))
{
cout<<a<<" "<<b<<" "<<c<<" "<<d<<" "<<e<<" "<<f<<endl;
count++;
}
}
}
}
}
}
}
cout<<"一共有"<<count<<"次";
}