BurritOS/test_programs/riscv_instructions/boolean_logic/new_comparisons.c

17 lines
264 B
C
Raw Normal View History

2023-03-06 11:37:16 +01:00
int main() {
int x = 0;
int y = 1;
while (x <= y) {
if (x > y) {
y += 1;
}
if (x == y) {
x += y;
}
if (x < y) {
x += 1;
} else {
return 0;
}
}
}