实验7

Posted zszssy

tags:

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

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);//把输出域的宽度由0改为10
    cout << 813 << 815 << 
;
    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<fstream>  
#include<iostream>
using namespace std;
int main() {
    ofstream s("d://text.txt");
    s << "已成功写入文件!" << endl;
    s.close();
    return 0;
}

技术分享图片

11-4

#include <fstream>
#include<iostream>
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<iostream>
#include<cstring>
#include<fstream>
#include<cstdlib>
#include<ctime>
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<<"无法打开文件"<<endl;
        return 1; 
    }
    int i=0;
    while(fin>>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<<stu[a].num<<" "<<stu[a].id<<" "<<stu[a].name<<" "<<stu[a].cls<<endl;
        fout<<stu[a].num<<" "<<stu[a].id<<" "<<stu[a].name<<" "<<stu[a].cls<<endl;
    }
   fout.close();
    return 0;
}

技术分享图片技术分享图片

 

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

VSCode自定义代码片段7——CSS动画

VSCode自定义代码片段7——CSS动画

20155201 李卓雯 《网络对抗技术》实验一 逆向及Bof基础

ES7-Es8 js代码片段

使用 React 实验性中继片段:缺少属性 '"$fragmentRefs"'

以下代码片段的时间复杂度是多少?