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.

9 lines
184 B

int main() {
float a = 5.0;
float b = 3.0;
int cmp1 = (a > b); // 1
int cmp2 = (a < b); // 0
int cmp3 = (a == 5.0); // 1
return cmp1 + cmp2 + cmp3; // 2
}