18 lines
339 B
C
18 lines
339 B
C
|
#include <stdio.h>
|
||
|
|
||
|
int main(void) {
|
||
|
float n;
|
||
|
float m;
|
||
|
printf("Veuillez saisir 2 reels.\n");
|
||
|
scanf("%f %f",&n,&m);
|
||
|
if (n>0 && m>0){
|
||
|
printf("Le produit sera positif.\n");
|
||
|
} else{
|
||
|
if (n<0 && m<0){
|
||
|
printf("Le produit sera positif.\n");
|
||
|
} else{
|
||
|
printf("Le produit sera negatif.\n");
|
||
|
}
|
||
|
}
|
||
|
return 0;
|
||
|
}
|