增加判题的测试用例文件

This commit is contained in:
virusdefender
2015-08-10 20:19:35 +08:00
parent 502b4944f1
commit 2752647f58
3 changed files with 26 additions and 0 deletions

8
judge/tests/c/success.c Normal file
View File

@@ -0,0 +1,8 @@
# include <stdio.h>
int main()
{
int a, b;
scanf("%d %d", &a, &b);
printf("%d", a + b);
return 0;
}