ACM模板

#include <assert.h>
#include <ctype.h>
#include <errno.h>
#include <float.h>
#include <limits.h>
#include <locale.h>
#include <math.h>
#include <setjmp.h>
#include <signal.h>
#include <stdarg.h>
#include <stddef.h>
#include <stdio.h>
#include <stdlib.h>
#include <string.h>
#include <time.h>

int main(int argc, char *argv[])
{
    int testCaseCount;
    scanf("%d", &testCaseCount);
    
    while (testCaseCount--)
    {
    }

    return 0;
}

你可能感兴趣的:(ACM模板)