会长等我 发表于 2013-3-19 00:13:54

学视频 编 文件合成器 运行不出结果为何?

跟着小甲鱼C语言视频,编写文件合成器,编译无错,运行的时候就出现 cannot open the file 1.jpg,原因是什么呢?我想我编写的应该没问题,跟视频对照过了,是我的文件放错位置了?我放到 《文件合成器》文件下的,DUBUG里也放了。各位大侠帮我看看吧,问题出在哪?



#include <stdio.h>
#include <stdlib.h>

void main()
{
    FILE *f_pic,*f_file,*f_finish;
    char pic_name,file_name,finish_name;
    char ch;

    printf("请输入要合成的图片和文件名称:\n");
    printf("图片:");
    scanf("%s",pic_name);
    printf("文件:");
    scanf("%s",file_name);
    printf("生成的文件为:");
    scanf("%s",finish_name);

    if(!(f_pic=fopen(pic_name,"rb")))                      //打开文件1 (.jpg)
    {
      printf("cannot open the picture %s !",pic_name);
      return;
    }
    if(!(f_file=fopen(file_name,"rb")))                     //打开文件2(.rar)
    {
      printf("cannot open the file %s !",file_name);
      return;
    }

    if(!(f_file = fopen(finish_name,"wb")))               //创建文件3.jpg
    {

      printf("cannot open the file %s !",finish_name);
      return;
    }

    while(!(feof(f_pic)))                                          //将第一个文件读到第三个文件
    {
      ch=fgetc(f_pic);
      fputc(ch,f_finish);
    }
    fclose(f_pic);

    while(!(feof(f_file)))                                           //将第二个文件读到第三个文件
    {
      ch=fgetc(f_file);
      fputc(ch,f_finish);
    }
    fclose(f_file);
    fclose(f_finish);

    system("pause");
}

2006xinqianyu 发表于 2013-4-17 18:03:29

同求啊,纠结了很久了

ccc_girl 发表于 2017-11-24 20:30:42

同求

enchanted 发表于 2018-5-7 11:29:02

同求

无棱角的包子 发表于 2018-8-6 13:41:59

没错,我也打不开。。。显示“无法打开图片”!
我用的VS 2010 ,感觉没问题的啊。。。

无棱角的包子 发表于 2018-8-6 13:47:04

通过CMD可以正常运行,所以再想是不是C语言没有调用到CMD里面的命令。。。
页: [1]
查看完整版本: 学视频 编 文件合成器 运行不出结果为何?