qijixingzhe 2018-05-17 12:40 采纳率: 66.7%
浏览 1461
已结题

c语言,把代码结果输出到E盘上一个叫1.txt的文本文档上

#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;
}

把这一段代码的运行结果输出到,E盘上一个叫1.txt的文本文档上。

要求:1.用C语言。2,在我给的代码的基础上修改。

  • 写回答

6条回答 默认 最新

  • threenewbee 2018-05-17 12:51
    关注
     // 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;
    }
    
    
    
    
    评论

报告相同问题?

悬赏问题

  • ¥30 vmware exsi重置后登不上
  • ¥15 易盾点选的cb参数怎么解啊
  • ¥15 MATLAB运行显示错误,如何解决?
  • ¥15 c++头文件不能识别CDialog
  • ¥15 Excel发现不可读取的内容
  • ¥15 关于#stm32#的问题:CANOpen的PDO同步传输问题
  • ¥20 yolov5自定义Prune报错,如何解决?
  • ¥15 电磁场的matlab仿真
  • ¥15 mars2d在vue3中的引入问题
  • ¥50 h5唤醒支付宝并跳转至向小荷包转账界面