实验7
Posted artistqun
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了实验7相关的知识,希望对你有一定的参考价值。
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<<‘ ‘; cout.unsetf(ios_base::adjustfield); cout.precision(2); cout.setf(ios_base::uppercase|ios_base::scientific); cout << 831.0 ; cout.flags(original_flags); }
以上是关于实验7的主要内容,如果未能解决你的问题,请参考以下文章
20155201 李卓雯 《网络对抗技术》实验一 逆向及Bof基础