造数据

用程序造数据
第一步

#include <bits/stdc++.h>
using namespace std;
int main()
{
   
       freopen("F:\\工作室\\造数据\\test1.in","w",stdout);//设置 cout printf 这些输出流都输出到 test.in里面去
       for(int i=7;i<=1e7;i++)
        cout<<rand()<<endl;//随机生成10000个数
       return 0;
}

第二步

#include<bits/stdc++.h>
using namespace std;
int main()
{
   
    freopen("F:\\工作室\\造数据\\test1.in","r",stdin);
    freopen("F:\\工作室\\造数据\\test1.out","w",stdout);
    int t;
    int sum;
    while(cin>>t)
    {
   
        sum=t/7;
        if(t%7!=0)
            sum++;
        cout<<sum<<endl;
    }
    return 0;
}
全部评论

相关推荐

11-24 19:04
已编辑
湖南工商大学 Java
点赞 评论 收藏
分享
评论
点赞
收藏
分享
牛客网
牛客企业服务