鱼C论坛

 找回密码
 立即注册
查看: 2124|回复: 9

帮我找下错误,谢谢

[复制链接]
发表于 2014-4-20 09:08:27 | 显示全部楼层 |阅读模式
5鱼币
#include <stdio.h>
#include <stdlib.h>
void main()
{
        FILE *f_pic,*f_file,*f_synthesis;
        char ch,pic_name[20],file_name[20],synthesis_name[20];
        printf("图片名称\n");
        scanf("%s",pic_name);
        printf("文件名称\n");
        scanf("%s",file_name");
        prinft("合成文件名称\n");
        scanf("%s",synthesis_name);
        if (!(f_pic=fopen(pic_name,"rb")))
        {
                prinft("cannot open picture is %s !!\n",pic_name);
                return;
        }
        if(!(f_file=fopen(file_name,"rb")))
        {
                printf("cannot open the file is%s",file_name);
                return;
        }
        if(!(f_synthesis=fopen(synthesis_name,"wb")))
        {
                printf("cannot open file is%s",synthesis_name);
                return;
        }
        while(!feof(f_pic))
        {
                ch=fgetc(f_pic);
                fputc(ch,f_synthesis);
        }
        fclose(f_pic);
        while(!feof(f_file))
        {
                ch=fgetc(f_file);
                fputc(ch,f_synthesis);
        }
        fclose(f_file);
        fclose(f_synthesis);
        system("pause");

}

最佳答案

查看完整内容

#include #include int main() { FILE *f_pic,*f_file,*f_synthesis; char ch,pic_name[20],file_name[20],synthesis_name[20]; printf("图片名称\n"); scanf("%s",pic_name); printf("文件名称\n"); scanf("%s",file_name); //scanf("%s",file_name"); printf("合成文件名称\n"); scanf("%s",synthesis_name); if (!(f_pic=fope ...
想知道小甲鱼最近在做啥?请访问 -> ilovefishc.com
回复

使用道具 举报

发表于 2014-4-20 09:08:28 | 显示全部楼层
#include <stdio.h>
#include <stdlib.h>

int main()
{
        FILE *f_pic,*f_file,*f_synthesis;
        char ch,pic_name[20],file_name[20],synthesis_name[20];
        printf("图片名称\n");
        scanf("%s",pic_name);
        printf("文件名称\n");      
        scanf("%s",file_name); //scanf("%s",file_name");
        printf("合成文件名称\n");
        scanf("%s",synthesis_name);
        if (!(f_pic=fopen(pic_name,"rb")))
        {              
                printf("cannot open picture is %s !!\n",pic_name);  // prinft("cannot open picture is %s !!\n",pic_name);
                return -1;
        }
        if(!(f_file=fopen(file_name,"rb")))
        {
                printf("cannot open the file is%s",file_name);
                return -1;
        }
        if(!(f_synthesis=fopen(synthesis_name,"wb")))
        {
                printf("cannot open file is%s",synthesis_name);
                return -1;
        }
        while(!feof(f_pic))
        {
                ch=fgetc(f_pic);
                fputc(ch,f_synthesis);
        }
        fclose(f_pic);
        while(!feof(f_file))
        {
                ch=fgetc(f_file);
                fputc(ch,f_synthesis);
        }
        fclose(f_file);
        fclose(f_synthesis);
        system("pause");
}


红色就是你错误的地方。
想知道小甲鱼最近在做啥?请访问 -> ilovefishc.com
回复

使用道具 举报

 楼主| 发表于 2014-4-20 09:36:46 | 显示全部楼层
想知道小甲鱼最近在做啥?请访问 -> ilovefishc.com
回复

使用道具 举报

发表于 2014-4-20 09:57:52 | 显示全部楼层
你的意思是,不能运行,还是运行得不到你想要的结果,我这边是可以run的。
想知道小甲鱼最近在做啥?请访问 -> ilovefishc.com
回复

使用道具 举报

发表于 2014-4-20 10:21:03 From FishC Mobile | 显示全部楼层
scanf(,&name)
想知道小甲鱼最近在做啥?请访问 -> ilovefishc.com
回复

使用道具 举报

发表于 2014-4-20 10:56:02 | 显示全部楼层
#include <stdio.h>
#include <stdlib.h>

void main()
{
        FILE *f_pic,*f_file,*f_synthesis;
        char ch,pic_name[20],file_name[20],synthesis_name[20];
        printf("图片名称\n");
        scanf("%s",pic_name);
        printf("文件名称\n");
        //scanf("%s",file_name");
        scanf("%s",file_name);
        //prinft("合成文件名称\n");
        printf("合成文件名称\n");
        scanf("%s",synthesis_name);
        if (!(f_pic=fopen(pic_name,"rb")))
        {
                //prinft("cannot open picture is %s !!\n",pic_name);
                printf("cannot open picture is %s !!\n",pic_name);
                return;
        }
        if(!(f_file=fopen(file_name,"rb")))
        {
                printf("cannot open the file is%s",file_name);
                return;
        }
        if(!(f_synthesis=fopen(synthesis_name,"wb")))
        {
                printf("cannot open file is%s",synthesis_name);
                return;
        }
        while(!feof(f_pic))
        {
                ch=fgetc(f_pic);
                fputc(ch,f_synthesis);
        }
        fclose(f_pic);
        while(!feof(f_file))
        {
                ch=fgetc(f_file);
                fputc(ch,f_synthesis);
        }
        fclose(f_file);
        fclose(f_synthesis);
        system("pause");
        
}
想知道小甲鱼最近在做啥?请访问 -> ilovefishc.com
回复

使用道具 举报

发表于 2014-4-20 10:56:40 | 显示全部楼层
Frank_Wang 发表于 2014-4-20 09:57
你的意思是,不能运行,还是运行得不到你想要的结果,我这边是可以run的。

你少改了一个地方 printf 他 写成了 prinft 你确定你可以跑起来???
想知道小甲鱼最近在做啥?请访问 -> ilovefishc.com
回复

使用道具 举报

发表于 2014-4-20 10:59:07 | 显示全部楼层

←_←  数组名放的是第一个元素的地址 就是file_name[0]的地址
他 scanf("%s",pic_name); 我觉得没问题的吧
想知道小甲鱼最近在做啥?请访问 -> ilovefishc.com
回复

使用道具 举报

 楼主| 发表于 2014-4-20 11:56:37 | 显示全部楼层
牡丹花下死做鬼 发表于 2014-4-20 10:56
你少改了一个地方 printf 他 写成了 prinft 你确定你可以跑起来???

的确,可是他竟然没有报错,我的天
想知道小甲鱼最近在做啥?请访问 -> ilovefishc.com
回复

使用道具 举报

 楼主| 发表于 2014-4-20 11:57:40 | 显示全部楼层
Frank_Wang 发表于 2014-4-20 09:08
#include
#include

还有给printf没改,它竟然没报错,笑了
想知道小甲鱼最近在做啥?请访问 -> ilovefishc.com
回复

使用道具 举报

您需要登录后才可以回帖 登录 | 立即注册

本版积分规则

小黑屋|手机版|Archiver|鱼C工作室 ( 粤ICP备18085999号-1 | 粤公网安备 44051102000585号)

GMT+8, 2024-12-26 02:04

Powered by Discuz! X3.4

© 2001-2023 Discuz! Team.

快速回复 返回顶部 返回列表