diff options
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"); -} -} |