1 2 3 4 5 6 7 8
#include <stdio.h> int main() { double x = 8.2 - 7.2; if (x >= 1) printf("x >= 1"); else printf("x < 1"); return 0; }
1
x < 1