From a2c2af12e8937dbe407f5088ab3d68fd8f57cd27 Mon Sep 17 00:00:00 2001 From: Fudgerboy <91767657+Fudgerboy@users.noreply.github.com> Date: Sun, 3 Dec 2023 01:55:31 +0000 Subject: Sat, Dec 2, 2023, 5:55 PM -08:00 --- compare.c | 21 --------------------- 1 file changed, 21 deletions(-) delete mode 100644 compare.c (limited to 'compare.c') diff --git a/compare.c b/compare.c deleted file mode 100644 index 8511597..0000000 --- a/compare.c +++ /dev/null @@ -1,21 +0,0 @@ -#include -#include - -int main(void) -{ - int x = get_int("What's x? "); - int y = get_int("What's y? "); - - if (x < y) - { - printf("x is less than y\n"); - } - else if (x > y) - { - printf("x is greater than y\n"); - } - else - { - printf("x is equal to y\n"); - } -} -- cgit v1.2.3