Show More
Commit Description:
Merge branch 'master' of gitorious.org:cafe-grader/cafe-grader-judge-scripts into win-local
Commit Description:
Merge branch 'master' of gitorious.org:cafe-grader/cafe-grader-judge-scripts into win-local
References:
File last commit:
Show/Diff file:
Action:
test/data/add_fail_test_case_1.c | 14 lines | 171 B | text/x-c | CLexer |
jittat
fix test run scoring bug...
r32 #include <stdio.h>
int main()
{
int a,b;
jittat
fixed engine test source codes to avoid gcc warning of unused return values...
r75 int r;
r = scanf("%d %d",&a,&b);
jittat
fix test run scoring bug...
r32 if((a==1) && (b==1))
printf("100\n");
else
printf("%d\n",a+b);
return 0;
}