#include <stdio.h>
int som(int n);
int main(void) {
int x, y;
printf("Ecrivez un nombre pour x et appuyez enter, puis un nombre pour y.\n");
scanf("%d %d", &x, &y);
printf(" x est egal a %d et y est egal a %d\n", x, y);
printf("la somme est egale a %d", som(x)-som(y-1));
return 0;
}
int som(int n)
{
if (n<2)
return n;
else
return n + som(n-1);
}
Calculer les parim, ou les nerot. pour soucot x est egal a 13 et y a 7, pour hanouka, x est egal a 9 et y est egal a 2.
Be the first to comment
You can use [html][/html], [css][/css], [php][/php] and more to embed the code. Urls are automatically hyperlinked. Line breaks and paragraphs are automatically generated.