2025-09-16 16:46:00 +02:00
|
|
|
#include <stdio.h>
|
|
|
|
|
#include <stdlib.h>
|
|
|
|
|
|
|
|
|
|
int main(void) {
|
|
|
|
|
int x;
|
2025-09-22 12:44:17 +02:00
|
|
|
printf("entrez un nombre entier\n");
|
2025-09-16 16:46:00 +02:00
|
|
|
x = scanf("%d",&x);
|
|
|
|
|
|
|
|
|
|
if (x>0) {
|
2025-09-22 12:44:17 +02:00
|
|
|
printf("%d\n", x%3*3);
|
2025-09-16 16:46:00 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
return EXIT_SUCCESS;
|
|
|
|
|
}
|