diff options
Diffstat (limited to '4/practice_problem_4_11_rewrite.c')
| -rw-r--r-- | 4/practice_problem_4_11_rewrite.c | 12 |
1 files changed, 12 insertions, 0 deletions
diff --git a/4/practice_problem_4_11_rewrite.c b/4/practice_problem_4_11_rewrite.c new file mode 100644 index 0000000..a1e9eac --- /dev/null +++ b/4/practice_problem_4_11_rewrite.c @@ -0,0 +1,12 @@ +word Min3 = [ + A <= B && A <= C : A; + B <= C : B; + 1 : C; +]; + +word Min3 = [ + C <= B && C <= A : C; + B <= A : B; + 1 : A; +]; + |
