From 82e17cc37fbd5fd8e09119da254ae67e4ea2633f Mon Sep 17 00:00:00 2001 From: Oumaima Fisaoui <48260689+Oumaimafisaoui@users.noreply.github.com> Date: Thu, 26 Sep 2024 13:47:31 +0100 Subject: [PATCH 1/2] Chore(AI-GO): Fixed instructions in only if --- subjects/AI.GO/only-if/README.md | 12 +++++++++--- 1 file changed, 9 insertions(+), 3 deletions(-) diff --git a/subjects/AI.GO/only-if/README.md b/subjects/AI.GO/only-if/README.md index 732f13f28..625c7893e 100644 --- a/subjects/AI.GO/only-if/README.md +++ b/subjects/AI.GO/only-if/README.md @@ -113,13 +113,19 @@ Your Robot must always seek the truth. #### Task 2: -Your `RoboGuard's traveling company` has a special promotion for robot members aged between 18 (included) and 25 (included). Write the if condition that will check if the robot user can benefit from the promotion: +Your `RoboGuard's traveling company` has a special promotion for robot members aged between 18 (included) and 25 (included). -- `user.age` must be more than `17`. +**NB: The ticket variable has already been declared, so do not declare it again.** + +1- Assign the message "You cannot benefit from our special promotion" to the ticket variable. + +2- Use an if statement to check that all these conditions are true: + +- `user.age` must be greater than or equal to `18`. - `user.age` must be less than or equal to `25`. - `user.activeMembership` must be `true`. -If `all` of these conditions are `true`, log the message '`You can benefit from our special promotion`'. +3- If all conditions are true, update the ticket variable with the message: "You can benefit from our special promotion". > Hint : use AND Operator in your condition! From 0d8f2f28f3bff9598346f5c356ca3334cbb4ac7c Mon Sep 17 00:00:00 2001 From: Christopher Fremond Date: Tue, 1 Oct 2024 11:13:04 +0100 Subject: [PATCH 2/2] fix(README):improve grammar and formatting --- subjects/AI.GO/only-if/README.md | 14 +++++++------- 1 file changed, 7 insertions(+), 7 deletions(-) diff --git a/subjects/AI.GO/only-if/README.md b/subjects/AI.GO/only-if/README.md index 625c7893e..ce97a494c 100644 --- a/subjects/AI.GO/only-if/README.md +++ b/subjects/AI.GO/only-if/README.md @@ -109,15 +109,15 @@ if (temperature < 8) { Your Robot must always seek the truth. - Check if the value of the provided variable `truth` is truthy, log the string: `The truth was spoken.` -- Otherwise, log the string: `Lies !!!!` because the value of the provided variable truth is falsy. +- Otherwise, log the string: `Lies !!!!` because the value of the provided variable `truth` is falsy. #### Task 2: Your `RoboGuard's traveling company` has a special promotion for robot members aged between 18 (included) and 25 (included). -**NB: The ticket variable has already been declared, so do not declare it again.** +**NB: The variable ticket has already been declared, so do not declare it again.** -1- Assign the message "You cannot benefit from our special promotion" to the ticket variable. +1- Assign the message "You cannot benefit from our special promotion" to the variable `ticket`. 2- Use an if statement to check that all these conditions are true: @@ -125,20 +125,20 @@ Your `RoboGuard's traveling company` has a special promotion for robot members a - `user.age` must be less than or equal to `25`. - `user.activeMembership` must be `true`. -3- If all conditions are true, update the ticket variable with the message: "You can benefit from our special promotion". +3- If all conditions are true, update the variable `ticket` with the message: "You can benefit from our special promotion". -> Hint : use AND Operator in your condition! +> Hint : use an AND Operator in your condition! #### Task 3: Your RoboGuard is selling plane tickets, each costing `9.99$`. The RoboGuard must confirm that the customer robot has the means to buy this ticket. -The customer robot may have enough cash `or` a voucher. +The customer robot may have enough cash **or** be in possesion of a voucher. Check if the provided variable customer can afford the ticket: If the customer has enough `cash` (`customer.cash` property) -`or` If the customer has a `voucher` (`customer.hasVoucher` property is true) +**OR** If the customer has a `voucher` (`customer.hasVoucher` property is true) If so, `increment` the provided variable `ticketSold` value by `1`.