BurritOS/test_programs/riscv_instructions/boolean_logic/comparisons.c

15 lines
258 B
C
Raw Normal View History

2023-02-08 16:01:41 +01:00
int main() {
int x = 0;
int y = 1;
while (x <= y) {
if (x > y) {
x += 1;
} else if (x == y) {
x += y;
} else if (x < y) {
y += 1;
} else {
2023-03-01 13:56:12 +01:00
return 0;
2023-02-08 16:01:41 +01:00
}
}
}