代码
#include <stdio.h>
int main(void)
{
int a,b,c,d,e,f,i,str[16];
printf("每次请输入16个整数,用空格隔开;\n");
while(1)
{
for(i=0;i<=15;i++)
{
scanf("%d",&str[i]);
}
for(a=0;a<=10;a++)
for(b=a+1;b<=11;b++)
for(c=b+1;c<=12;c++)
for(d=c+1;d<=13;d++)
for(e=d+1;e<=14;e++)
for(f=e+1;f<=15;f++)
if(str[a]+str[b]+str[c]+str[d]+str[e]+str[f]==6666)
printf("输出结果如下 %-6d%-6d%-6d%-6d%-6d%-6d\n",str[a],str[b],str[c],str[d],str[e],str[f]); }
}
#include <stdio.h>
int main(void)
{
int a,b,c,d,e,f,i,str[16];
printf("每次请输入16个整数,用空格隔开;\n");
while(1)
{
for(i=0;i<=15;i++)
{
scanf("%d",&str[i]);
}
for(a=0;a<=10;a++)
for(b=a+1;b<=11;b++)
for(c=b+1;c<=12;c++)
for(d=c+1;d<=13;d++)
for(e=d+1;e<=14;e++)
for(f=e+1;f<=15;f++)
if(str[a]+str[b]+str[c]+str[d]+str[e]+str[f]==6666)
printf("输出结果如下 %-6d%-6d%-6d%-6d%-6d%-6d\n",str[a],str[b],str[c],str[d],str[e],str[f]); }
}