From 04e11de8e7291eaf1810440bc74bd0b2c6144b3c Mon Sep 17 00:00:00 2001 From: Ethan McCue Date: Thu, 5 Sep 2024 09:03:37 -0400 Subject: [PATCH] Update challenges.md --- src/branching_logic/challenges.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/branching_logic/challenges.md b/src/branching_logic/challenges.md index 674639d..213d4b5 100644 --- a/src/branching_logic/challenges.md +++ b/src/branching_logic/challenges.md @@ -41,8 +41,8 @@ void main() { ## Challenge 4 -Write code that will assign the string `The number is {x} is even` to `message` if `x` is an even number -and `The number is {x} is odd` if `x` is an odd number. +Write code that will assign the string `The number {x} is even` to `message` if `x` is an even number +and `The number {x} is odd` if `x` is an odd number. So if `x` is 12 the string you should assign `The number 12 is even` to `message`.