第七次实验

Posted lirunzeyo

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了第七次实验相关的知识,希望对你有一定的参考价值。

#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 << 
;
    cout.unsetf(ios_base::adjustfield); 
    cout.precision(2);
    cout.setf(ios_base::uppercase | ios_base::scientific); 
    cout << 831.0;
    cout.flags(original_flags);
    return 0;
}

技术分享图片

 

#include<iostream>
#include<fstream>
#include<Windows.h>
using namespace std;
int main()
{   
    ofstream outFile;
    outFile.open(("D:\\biubiubiu.txt"));
       outFile<<"well done!"<<endl;
       outFile.close();
       WinExec("notepad.exe D:\\biubiubiu.txt",SW_SHOW);
       system("pause");
    return 0;
}

技术分享图片

 

 

#include<iostream>
#include<fstream>
#include<string> 
using namespace std;
int main()
{
    
        ifstream outFile("D:\\biubiubiu.txt");
        string file;
        if(outFile)
        {
            while(getline(outFile,file))
            {
                cout<<file<<endl;
            }
        }
        outFile.close();
    return 0;
}

技术分享图片

 

 O的K!

 














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

第七次作业

第七次作业

第七次作业

第七次实验

第七次实验

第七次实验