博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
实验7
阅读量:5265 次
发布时间:2019-06-14

本文共 1494 字,大约阅读时间需要 4 分钟。

11-7

#include
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);//把输出域的宽度由0改为10 cout << 813 << 815 << '\n'; cout.unsetf(ios_base::adjustfield);//消除对齐方式的设置 cout.precision(2);//设置精度2 cout.setf(ios_base::uppercase | ios_base::scientific);//更改浮点数的显示设置 cout << 831.0; cout.flags(original_flags);//恢复初始参数 return 0;}

11-3

#include
#include
using namespace std;int main() { ofstream s("d://text.txt"); s << "已成功写入文件!" << endl; s.close(); return 0;}

11-4

#include 
#include
using namespace std;int main(){ ifstream s("test1.txt"); char ch; while((ch=s.get())!=EOF) cout.put(ch); s.close(); return 0;}

1

#include
#include
#include
#include
#include
using namespace std;struct student{ string num; string id,name,cls;}stu[100];int main(){ ifstream fin("list.txt"); ofstream fout("roll.txt"); if(!fin) { cout<<"无法打开文件"<
>stu[i].num>>stu[i].id>>stu[i].name>>stu[i].cls) { i++; }   fin.close(); int line=i; int a; srand(time(NULL)); for(int i=0;i<5;i++) { a=rand()%line+1; cout<
<<" "<
<<" "<
<<" "<
<

 

转载于:https://www.cnblogs.com/zszssy/p/9204310.html

你可能感兴趣的文章
实现MyLinkedList类深入理解LinkedList
查看>>
自定义返回模型
查看>>
C#.NET 大型通用信息化系统集成快速开发平台 4.1 版本 - 客户端多网络支持
查看>>
HDU 4122
查看>>
Suite3.4.7和Keil u3自带fx2.h、fx2regs.h文件的异同
查看>>
打飞机游戏【来源于Crossin的编程教室 http://chuansong.me/account/crossincode 】
查看>>
[LeetCode] Merge Intervals
查看>>
【翻译自mos文章】当点击完 finishbutton后,dbca 或者dbua hang住
查看>>
Linux编程简介——gcc
查看>>
一种高效的序列化方式——MessagePack
查看>>
2019年春季学期第四周作业
查看>>
2019春第十周作业
查看>>
解决ThinkPHP关闭调试模式时报错的问题汇总
查看>>
【APT】SqlServer游标使用
查看>>
关于ExecuteNonQuery()返回值为-1
查看>>
Firefox修復QQ快速登錄
查看>>
PAT——1060. 爱丁顿数
查看>>
分布式技术追踪 2017年第二十期
查看>>
git添加公钥后报错sign_and_send_pubkey: signing failed: agent refused operation的解决办法
查看>>
Linux环境变量永久设置方法(zsh)
查看>>