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

实验7

时间:2018-06-20 21:23:21      阅读:131      评论:0      收藏:0      [点我收藏+]

标签:fst   sci   image   技术分享   flags   col   ret   origin   txt   

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); 
}

技术分享图片

实验7

标签:fst   sci   image   技术分享   flags   col   ret   origin   txt   

原文地址:https://www.cnblogs.com/artistqun/p/9205506.html

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