实验7

本文介绍了使用C++进行文件读写的三个示例:向文件写入字符串、从文件逐字符读取并显示内容以及设置格式输出数据。这些示例展示了如何使用ofstream和ifstream类来实现基本的文件操作。

11.3

#include<iostream>
#include<fstream>
using namespace std;
int main() {
    ofstream test("test1.txt");
    test<< "已成功写入文件!";
    test.close();
    return 0;
}

11.4

#include<fstream>
#include<iostream>
using namespace std;
int main(){
    char ch;
    ifstream test1("test.txt");
    while(test1.get(ch))
    cout<<ch;
    test1.close();
}

11.7

#include <iostream>
using namespace ::std;
int main()
{
ios_base::fmtflags original_flags = cout.flags();
cout<< 812<<'|';
cout.setf(ios_base::left,ios_base::adjustfield);
cout.width(10);
cout<<813<<815<<'\n';
cout.unsetf(ios_base::adjustfield);
cout.precision(2);
cout.setf(ios_base::uppercase|ios_base::scientific);
cout << 831.0 ;
cout.flags(original_flags); 
}

转载于:https://www.cnblogs.com/artistqun/p/9205506.html

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值