All the sources codespage 8
C++
June 26 2016 at 01:30
#291
int i, sum = 0;
for(i = 0; i < 1 + 2 + 3 + 4 + 5 + 6 + 7 + 8 + 9 + 10; i ++) {
sum += 1;
}
printf("sum: %d", 1 + 2 + 3 + 4 + 5 + 6 + 7 + 8 + 9 + 10);
Java
June 25 2016 at 01:30
#290
if (intAnswer>-1) {
if (intAnswer == 0)
return SendResult.NoAuth;
else {
this.State = NetStateEnum.connected;
return SendResult.Success;
}
} else {
return SendResult.ProtocolError;
}
C++
June 24 2016 at 01:30
#289
if(1==1)
{
if((rc == 0) && (gbl_type == PROCESS_TYPE_DOC))
{
config.Document("predoc.htm");
}
else if((rc == 0) && (gbl_type != PROCESS_TYPE_CHECK))
{
files.SetConfig(config, gbl_type, gbl_suppress_delete);
}
else if(gbl_type != PROCESS_TYPE_CLOSE)
{
LogMessage("\n:::NORMAL:CHECK COMPLETE\n");
}
}