Challenge
Let's practice!
Task
Swipe to start coding
Your code accepts the sentence from the user. You should define if it is short, medium, or large.
- Accept the text message from the user as input and store it in the variable
sentence
. - Using the statement
if
and functionlength()
we check if our statement is large. If the sentenceβs length is greater than30
, we print the message"The sentence is large!"
. - Using the statement
else if
and functionlength()
we check if our statement is medium. If the sentenceβs length is greater than10
(but less than30
), we print the message `"The sentence is medium!". - Using the statement
else
and functionlength()
we check if our statement is short. If the sentenceβs length is less than10
, we print the message"The sentence is medium!"
.
Please, donβt forget to type the semicolon at the end of the lines.
Solution
Everything was clear?
Thanks for your feedback!
SectionΒ 3. ChapterΒ 7
single
Ask AI
Ask AI
Ask anything or try one of the suggested questions to begin our chat
Awesome!
Completion rate improved to 3.33
Challenge
Swipe to show menu
Let's practice!
Task
Swipe to start coding
Your code accepts the sentence from the user. You should define if it is short, medium, or large.
- Accept the text message from the user as input and store it in the variable
sentence
. - Using the statement
if
and functionlength()
we check if our statement is large. If the sentenceβs length is greater than30
, we print the message"The sentence is large!"
. - Using the statement
else if
and functionlength()
we check if our statement is medium. If the sentenceβs length is greater than10
(but less than30
), we print the message `"The sentence is medium!". - Using the statement
else
and functionlength()
we check if our statement is short. If the sentenceβs length is less than10
, we print the message"The sentence is medium!"
.
Please, donβt forget to type the semicolon at the end of the lines.
Solution
Everything was clear?
Thanks for your feedback!
Awesome!
Completion rate improved to 3.33SectionΒ 3. ChapterΒ 7
single