Thursday, 1 April 2021

Day 3: Intro to Conditional Statements

Hacker rank 30days of code - Conditional statement Program:

Objective
In this challenge, we learn about conditional statements. Check out the Tutorial tab for learning materials and an instructional video.

Task
Given an integer, , perform the following conditional actions:

  • If  is odd, print Weird
  • If  is even and in the inclusive range of  to , print Not Weird
  • If  is even and in the inclusive range of  to , print Weird
  • If  is even and greater than , print Not Weird

Complete the stub code provided in your editor to print whether or not  is weird.

Input Format

A single line containing a positive integer, .

Constraints

Output Format

Print Weird if the number is weird; otherwise, print Not Weird.


 #include <bits/stdc++.h>
using namespace std;
int main()
{
    int N;
    cin >> N;
    if(N%2!=0){
        cout<<"Weird";
    }else if(N%2==0 && N>1 && N<6){
        cout<<"Not Weird";
    }else if(N%2==0 && 5<N && N<21){
        cout<<"Weird";
    }else if(N%2==0 && N>20 ){
        cout<<"Not Weird";
    }
    return 0;
}

No comments:

Post a Comment