ACM – 快速生成测试数据

比赛的时候出现了100 * 100组数据的情况,但是当时使用freopen忘记了具体的步骤,特意重新写一下,也是属于基础的内容。

生成一百行数据,每行100个数据,每个数据为100。

#include <stdio.h>
#include <iostream>`enter code here`
using namespace std;
int main()
{
    freopen("input", "r", stdin);
    freopen("output", "w", stdout);
    for(int i = ; i < 100; i++)
        for(int j = ; j < 100; j++)
            printf("%d%c", 100, j == 99? '\n' : ' ');
    fclose(stdin);
    fclose(stdout);
    return ;
}

运行过后生成的数据(本来应该输出在屏幕上,此时不会输出到屏幕,而是输出到文件)会保存到output文件中。如果需要使用直接更改output的文件名,再使用一次freopen('r')即可。

Licensed under CC BY-NC-SA 4.0
comments powered by Disqus
使用 Hugo 构建
主题 StackJimmy 设计