第15周项目一 文本输入、输出工资

/*从文本中输入,输出数据*/
#include <iostream>
#include <cstdio>
using namespace std;
int main( )
{
    double salarys[500];
    int n=0;
    double t;
    freopen("salary.txt","r",stdin);//******
    freopen("ordered_salary.txt","w",stdout);//******
    while(cin>>salarys[n])
    {
        n++;
    }
    //将n名职工的工资排序后输出
    for(int i=0; i<n; i++)
        for(int j=0; j<n-1; j++)
        {
            if(salarys[j]<salarys[j+1])
            {
                t=salarys[j];
                salarys[j]=salarys[j+1];
                salarys[j+1]=t;
            }
        }
    for(int j=0;j<n;j++)
    {
        cout<<salarys[j]<<endl;
    }
    fclose(stdout);//*****
    fclose(stdin);//*****
    return 0;
}

你可能感兴趣的:(第15周项目一 文本输入、输出工资)