实验7

Posted miaorui1314

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了实验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);                              //设置宽度为10
    cout << 813 << 815 << 
;
    cout.unsetf(ios_base::adjustfield);      //设置为默认
    cout.precision(2);
    cout.setf(ios_base::uppercase | ios_base::scientific); //显示16进制大写,以及E|使用科学记数法
    cout << 831.0;
    cout.flags(original_flags);//设置为初始格式设置
    return 0;
}

11-3

 

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

技术分享图片

11-4

#include<iostream>
#include<string>
#include<fstream>
using namespace std;
int main()
{
    ifstream file;
    string t;
    file.open("text1.txt");
    getline(file, t);
    cout << t<<endl;
    file.close();
    return 0;
}

技术分享图片

 

以上是关于实验7的主要内容,如果未能解决你的问题,请参考以下文章

VSCode自定义代码片段7——CSS动画

VSCode自定义代码片段7——CSS动画

20155201 李卓雯 《网络对抗技术》实验一 逆向及Bof基础

ES7-Es8 js代码片段

使用 React 实验性中继片段:缺少属性 '"$fragmentRefs"'

以下代码片段的时间复杂度是多少?