码迷,mamicode.com
首页 > 其他好文 > 详细

第七次实验

时间:2018-06-21 01:43:53      阅读:158      评论:0      收藏:0      [点我收藏+]

标签:txt   1.0   inf   idt   while   IV   bubuko   system   unset   

#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);
    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!

 

第七次实验

标签:txt   1.0   inf   idt   while   IV   bubuko   system   unset   

原文地址:https://www.cnblogs.com/lirunzeyo/p/9206737.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!