c++获取读写文本权限

#include<cstdio>
#include<iostream>
#include<fstream>
using namespace std;
int tot;
int main(){
    ifstream infile("1.txt",ios::in);//没有不报错 
    infile>>tot;
    cout<<++tot<<endl;//输出到屏幕 
    infile.close();
    ofstream outfile("1.txt",ios::out);
    outfile<<tot;
    outfile.close();
    //用处大大的 
    return 0;
}

同理

#include<cstdio>
#include<iostream>
using namespace std;
int tot;
int main(){
    freopen("1.in","r",stdin);
    scanf("%d",&tot);
    fclose(stdin);
    freopen("1.in","w",stdout);
    tot++;
    printf("%d",tot);
    fclose(stdout);
    return 0;
}

原文链接: https://www.cnblogs.com/shenben/p/5620689.html

欢迎关注

微信关注下方公众号,第一时间获取干货硬货;公众号内回复【pdf】免费获取数百本计算机经典书籍

原创文章受到原创版权保护。转载请注明出处:https://www.ccppcoding.com/archives/235934

非原创文章文中已经注明原地址,如有侵权,联系删除

关注公众号【高性能架构探索】,第一时间获取最新文章

转载文章受原作者版权保护。转载请注明原作者出处!

(0)
上一篇 2023年2月13日 下午4:51
下一篇 2023年2月13日 下午4:51

相关推荐