Answered step by step
Verified Expert Solution
Question
1 Approved Answer
Given an integer, n . perform the following conditional actions: If n is odd, print Weird If n is even and in the inclusive range
Given an integer, n perform the following conditional actions:
If n is odd, print Weird
If n is even and in the inclusive range of to print Not Weird
If n is even and in the inclusive range of to print Weird
If n is even and greater than print Not Weird
Complete the stub code provided in your editor to print whether or not n is weird.
Input Format
A single line containing a positive integer, n
Constraints
n
Output Format
Print Weird if the number is weird; otherwise, print Not Weird.
Sample Input O
Sample Output
Weird
Sample Input
Sample Output
Not Weird
Explanation
Sample Case : n
n is odd and odd numbers are weird, so we print Weird.
Sample Case : n
n and n is even, so it isn't weird. Thus, we print Not Weird.
Step by Step Solution
There are 3 Steps involved in it
Step: 1
Get Instant Access to Expert-Tailored Solutions
See step-by-step solutions with expert insights and AI powered tools for academic success
Step: 2
Step: 3
Ace Your Homework with AI
Get the answers you need in no time with our AI-driven, step-by-step assistance
Get Started