Judger/tests/test_src/integration/math.c
2017-08-17 11:04:42 +08:00

8 lines
102 B
C

#include <stdio.h>
#include <stdlib.h>
int main()
{
printf("abs %d", abs(-1024));
return 0;
}