25 lines
430 B
C
25 lines
430 B
C
#include <stdlib.h>
|
|
#include <stdio.h>
|
|
|
|
int main(void)
|
|
{
|
|
|
|
float nombre = 0;
|
|
float nombre2 = 0;
|
|
|
|
printf("Rentrez un réel :\n");
|
|
scanf("%f", &nombre);
|
|
printf("Rentrez le second réel :\n");
|
|
scanf("%f", &nombre2);
|
|
|
|
if ((nombre < 0 && nombre2 < 0) || (nombre > 0 && nombre2 > 0))
|
|
{
|
|
|
|
printf("Le résultat est positif");
|
|
}
|
|
else
|
|
{
|
|
printf("Le résultat est négatif");
|
|
}
|
|
}
|