#include "stdafx.h"
#include
int main()
{
int a, b, c, d, e, i = 0;
for (a = 1; a <= 15; a++)
for (b = 1; b <= 15; b++)
for (c = 1; c <= 15; c++)
for (d = 1; d <= 15; d++)
for (e = 1; e <= 15; e++)
if (b - a > 0 && c - b > 0 && d - c > 0 && e - d > 0)
{
printf("A:%2d B:%2d C:%2d D:%2d E:%2d ", a, b, c, d, e);
i++;
if (i % 1 == 0)
printf("\n");
}
printf("一共%d种\n", i);
return 0;
}
这一段代码运行结果:
从15个球里面选5个,一共有3003注。现在有这样一个要求,从这3003注号码里面机选10注打印出来,这个代码该如何添加
要求:1,用C语言。2,在源代码的基础上添加或者修改。
谢谢老铁。
HUWWW
相关分类