Challenge: Checking if a Number is Even and Positive
Oppgave
Swipe to start coding
Write a program that checks whether a given number is even and positive.
- Use an
if
statement with the&&
operator to check if num is:- Greater than 0.
- Even (divisible by 2).
- If both conditions are
true
, print:"The number is positive and even."
. - Otherwise, print:
"The number does not meet the criteria."
.
Løsning
Alt var klart?
Takk for tilbakemeldingene dine!
Seksjon 3. Kapittel 13