zoukankan      html  css  js  c++  java
  • 对拍模板

    ①生成整数的对拍文件,每次生成10个数字。共生成十种 且数字范围在100内

    //看看会不会爆int!数组会不会少了一维!
    //取物问题一定要小心先手胜利的条件
    #include <bits/stdc++.h>
    using namespace std;
    #pragma comment(linker,"/STACK:102400000,102400000")
    #define LL long long
    #define ALL(a) a.begin(), a.end()
    #define pb push_back
    #define mk make_pair
    #define fi first
    #define se second
    #define haha printf("haha
    ")
    const int maxn = 10;
    LL h[maxn];
    
    int main(){
        ///freopen( ".in","r",stdin );
        freopen( "input","w",stdout );
        srand( time( NULL ) );
        int t,n = 10 ;
        while( n-- ){
            printf("10
    ");
            for (int i = 1; i <= 10; i++)
                printf("%d
    ",abs(rand()) % 100 );
        }
        return 0;
    }
    View Code

    ②生成随机小数

    //看看会不会爆int!数组会不会少了一维!
    //取物问题一定要小心先手胜利的条件
    #include <bits/stdc++.h>
    using namespace std;
    #pragma comment(linker,"/STACK:102400000,102400000")
    #define LL long long
    #define ALL(a) a.begin(), a.end()
    #define pb push_back
    #define mk make_pair
    #define fi first
    #define se second
    #define haha printf("haha
    ")
    const int maxn = 10;
    LL h[maxn];
    
    int main(){
        ///freopen( ".in","r",stdin );
        freopen( "input","w",stdout );
        srand( time( NULL ) );
        int t,n = 10 ;
        while( n-- ){
            printf("10
    ");
            for (int i = 1; i <= 10; i++)
                 printf( "%.6lf
    ",rand()*1.0 / 100 );
        }
        return 0;
    }
    View Code

    ③生成字符

    //看看会不会爆int!数组会不会少了一维!
    //取物问题一定要小心先手胜利的条件
    #include <bits/stdc++.h>
    using namespace std;
    #pragma comment(linker,"/STACK:102400000,102400000")
    #define LL long long
    #define ALL(a) a.begin(), a.end()
    #define pb push_back
    #define mk make_pair
    #define fi first
    #define se second
    #define haha printf("haha
    ")
    const int maxn = 10;
    LL h[maxn];
    
    int main(){
        ///freopen( ".in","r",stdin );
        freopen( "input","w",stdout );
        srand( time( NULL ) );
        int t,n = 10 ;
        while( n-- ){
            printf("10
    ");
            for (int i = 1; i <= 10; i++)
                printf( "%c
    ",rand() % 26 + 'A' );
        }
        return 0;
    }
    View Code
  • 相关阅读:
    每日算法
    每日算法
    每日算法
    每日算法
    2020 蓝桥杯(省赛)校内模拟赛
    js 时间戳转特定格式的日期
    js正则表达式 replace替换url的参数
    7月/暑假集训总结1
    模板(ac):启发式合并
    [考试反思]0729NOIP模拟测试10
  • 原文地址:https://www.cnblogs.com/heimao5027/p/6104212.html
Copyright © 2011-2022 走看看