Files
DEV/DEV1.1/CM3/blague.c
Simoes Lukas 2217e7986c Java
2025-01-30 16:07:12 +01:00

13 lines
208 B
C
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

#include<stdlib.h>
#include<stdio.h>
#include<time.h>
int main(void) {
srand(time(NULL));
if (rand()%2) {
printf("Ϳоie !\n");
} else {
printf("Désespoir !\n");
}
return EXIT_SUCCESS;
}