La Bombe !

Inco t'es sur d'avoir compris le principe ? :mrgreen:

Code:
>"83",,@
C'est du befunge, un language dit "bidimensionnel" strocool, ça pourrait s'écrire comme ça aussi :
Code:
>      v
@,,"38"<
 
39_steps.jpg
 
Code:
The Pirate-Communist Pudding.

Very refined and complex cake to show the magnificence of our great country, 
for the glory of our awesome and unelected comrade Humchman Lenin.

Ingredients.
48 g flour
50 ml hot water

Method.
Clean the mixing bowl.
Put the flour into the mixing bowl.
Add dry ingredients to mixing bowl.
Liquify contents of the mixing bowl.
Pour contents of the mixing bowl into the baking dish.

Serves 1.

 
pastis51_gr-jpg.631


51, je t’aime ! J’en boirais des tonneaux !
À me rouler par terre dans tous les caniveaux !

Et si tu m’abandonnes, alors je m’empoisonne !
Avec une bonbonne d’un Ricard bien jaune !
 
Code:
#define STAHP 0x10

int main(void) {

	int i = 2, j = 0, ncount = 1, last = 0;

	do	{
		++i;
		for (j = 2; j < i; j++)	{
			if (i % j == 0)
				goto next;
		}
		last = i;
		++ncount;
		next:
        ;
	} while (ncount < STAHP);

	fprintf(stdout, "%d", last);
	return 0;
}
 
Back
Top