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

实验7

时间:2018-06-20 18:41:04      阅读:153      评论:0      收藏:0      [点我收藏+]

标签:IV   space   idt   style   pre   while   ima   namespace   main   

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 << \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<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

标签:IV   space   idt   style   pre   while   ima   namespace   main   

原文地址:https://www.cnblogs.com/zszssy/p/9204310.html

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