Tous les codes sourcespage 8
Markup
27 Juin, 2016 à 01:30
#292
/* A vendors way of adding padding... */
<p> Jesus sinners doth receive;<br />
Oh, may all this saying ponder<br />
Who in sin's delusions live<br />
And from God and heaven wander!<br />
Here is hope for all who grieve:<br />
Jesus sinners doth receive.<br /><br />
We deserve but grief and shame,<br />
Yet His words, rich grace revealing,<br />
Pardon, peace, and life proclaim;<br />
Here our ills have perfect healing.<br />
Firmly in these words believe:<br />
Jesus sinners doth receive.<br />
(<em>LSB</em> 609:1–2)</div>
</p>
C++
26 Juin, 2016 à 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
25 Juin, 2016 à 01:30
#290
if (intAnswer>-1) {
if (intAnswer == 0)
return SendResult.NoAuth;
else {
this.State = NetStateEnum.connected;
return SendResult.Success;
}
} else {
return SendResult.ProtocolError;
}