慕工程0101907
// Q689426.cpp : Defines the entry point for the console application.
//
#include "stdafx.h"
#include <stdio.h>
int _tmain(int argc, _TCHAR* argv[])
{
FILE *fpWrite=fopen("1.txt","w");
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);
fprintf(fpWrite, "A:%2d B:%2d C:%2d D:%2d E:%2d ", a, b, c, d, e);
//如果要换行 fprintf(fpWrite, "A:%2d B:%2d C:%2d D:%2d E:%2d \n", a, b, c, d, e);
i++;
if (i % 1 == 0)
printf("\n");
}
printf("total: %d\n", i);
fprintf(fpWrite, "total: %d\n", i);
fclose(fpWrite);
return 0;
}