美文网首页
竞赛输入与输出

竞赛输入与输出

作者: Ell1ot | 来源:发表于2019-04-29 23:43 被阅读0次
    三种输入输出方式

    赛前应仔细阅读文件读写规定并严格遵守,有三种文件读写方式:
    1.标准输入输出(scanf,printf)
    2.通过重定向读写文件(freopen)
    3.通过fopen函数读写文件(fopen)
    使用“#ifdef #endif”与“/* */”将重定向或fopen函数注释,便于使用或停用。

    重定向读写
    freopen("输入文件名.in","r",stdin);
    freopen("输出文件名.out","w",stdout);
    
    fopen读写
    FILE *fin,*fout;
    fin=fopen("输入文件名.in","rb");
    fout=fopen("输出文件名.out","wb");
    
    fscanf(fin,"%d",&x);
    fprintf(fout,"%d",&x);
    
    fclose(fin);
    fclose(fout);
    

    相关文章

      网友评论

          本文标题:竞赛输入与输出

          本文链接:https://www.haomeiwen.com/subject/xtlpnqtx.html