Please Fill out the Feedback Form for Code Radius

Decrement OR Increment : DECINC | CodeChef Solution

1 min read

Problem

Write a program to obtain a number NN and increment its value by 1 if the number is divisible by 4 otherwise decrement its value by 1.

Input Format

First line will contain a number NN.

Output Format

Output a single line, the new value of the number.

Constraints

0≤N≤1000

Sample

Input
5
Output
4

Explanation

Since 5 is not divisible by 4 hence, its value is decreased by 1.

Solution

cpp
#include <iostream> using namespace std; // Solution from : Code Radius [ https://radiuscode.blogspot.com/ ] int main() { int n; cin>>n; if(n%4==0) ++n; else --n; cout<<n<<endl; return 0; }

Please First Try to Solve Problem by Yourself.

You may like these posts

  • ProblemAlice and Bob are meeting after a long time. As usual they love to play some math games. This times Alice takes the call and decides the game. The game is very simple, Alice…
  • ProblemYou and your friend are playing a game with hoops. There are N hoops (where N is odd) in a row. You jump into hoop 1, and your friend jumps into hoop N. Then you jump into h…
  •  ProblemChef is a big fan of Coldplay. Every Sunday, he will drive to a park taking M minutes to reach there, and during the ride he will play a single song on a loop. Today, …
  •  ProblemWrite a program to obtain length (L) and breadth (B) of a rectangle and check whether its area is greater or perimeter is greater or both are equal. Please Share thi…
  • ProblemIf Give an integer N . Write a program to obtain the sum of the first and last digits of this number. Please Share this article... Input Format The first line contains a…
  •  ProblemChefland has 2 different types of coconut, type A and type B. Type A contains only x_a milliliters of coconut water and type B contains only x_b grams of coconut pulp.…

Post a Comment