Show More
Commit Description:
add option -A <opt> to box. This options allow more argument to be explicitly passed to the program...
Commit Description:
add option -A <opt> to box. This options allow more argument to be explicitly passed to the program We have to use this because if the argument we wish to pass to the program is option (in -? format), box will intepret it as its option and failed accordingly. be noted that, by the definition of getopt, these options will be put after original argument (check the code for more info)
References:
File last commit:
Show/Diff file:
Action:
test/data/add_fail_test_case_1.c | 16 lines | 180 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);
Jittat Fakcharoenphol
fixed grader to work with ruby 1.9
r137
a+=r;
jittat
fix test run scoring bug...
r32 return 0;
}