diff options
author | Fudgerboy <91767657+Fudgerboy@users.noreply.github.com> | 2023-12-01 05:25:03 +0000 |
---|---|---|
committer | Fudgerboy <91767657+Fudgerboy@users.noreply.github.com> | 2023-12-01 05:25:03 +0000 |
commit | 3701ed1038a3259388baf25232f4b9ba65ef9158 (patch) | |
tree | cf564b2b713e2bc239d39c048ea71bb2f4722083 /if.c | |
parent | b27e1c2de44ad1ace3ea619051d106c8d7bd8a33 (diff) |
Thu, Nov 30, 2023, 9:25 PM -08:00
Diffstat (limited to 'if.c')
-rw-r--r-- | if.c | 14 |
1 files changed, 0 insertions, 14 deletions
@@ -1,14 +0,0 @@ -#include <stdio.h> -#include <cs50.h> - -int main(void) -{ -int x, 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"); -} -} |