Cours BUT1 Info R1.03 - Introduction à l'architecture des ordinateurs
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 

15 lines
231 B

#include <stdlib.h>
#include <stdio.h>
int main()
{
float a = 0.1;
float b = 0.2;
float c = 0.3;
/* double a = 0.1;
double b = 0.2;
double c = 0.3; */
if (a+b == c) {printf("égaux\n");} else {printf("différents\n");}
}