![]() ![]() ![]() | control/if-else-or-seq-2.c - Brug af to if sætninger i sekvens. | Lektion 3 - slide 18 : 25 Program 2 |
#include <stdio.h> int main(void) { int i = 7, j = 7; if (i < j) printf("i is less than j\n"); if (i >= j) printf("i is greater than or equal to j\n"); return 0; }