Show More
Commit Description:
add more languages, java and ruby...
Commit Description:
add more languages, java and ruby add bookmark algo-bm and branch algo
References:
File last commit:
Show/Diff file:
Action:
test/data/test1_correct_cc.cc | 14 lines | 136 B | text/x-c | CppLexer |
Jittat Fakcharoenphol
added regression test for c++ submission
r120 /*
LANG: C++
*/
#include <cstdio>
int main()
{
int a,b,r;
r = scanf("%d %d",&a,&b);
printf("%d\n",a+b);
Jittat Fakcharoenphol
fixed grader to work with ruby 1.9
r137 a += r;
Jittat Fakcharoenphol
added regression test for c++ submission
r120 return 0;
}