![]() |
VOOZH | about |
The objective of the program is to categorize a given set of numbers into two distinct groups: odd numbers and even numbers. The program achieves this by examining each number and determining whether it is divisible by 2 without leaving a remainder.
In this article, we will discuss how to create a program to categorize numbers into odd or even with its working example in the R Programming Language using R if-else conditions.
if (number %%2== 0) {
# Code block executed if the number is even
print("Number is even")
} else {
# Code block executed if the number is odd
print("Number is odd")
}
Output:
[1] "Number is even"number is assigned the value 10, if statement compares 10. If num1%%2==0, the code inside the curly braces following the if statement will be executed. Otherwise, the code inside the curly braces following the else statement will be executed.10%%2 equal to 0, the code inside the else block will not be executed. print statement is used to display that the number is even, in the console.Output:
Number is oddnumber is assigned the value 15, if statement compares 15. If num1%%2==0, the code inside the curly braces following the if statement will be executed. Otherwise, the code inside the curly braces following the else statement will be executed.15%%2 equal to 0, the code inside the else block will not be executed. print statement is used to display that the number is odd, in the console.Output:
25 is an Odd number.categorize_number <- function(number).categorize_number that takes one parameter, number.if (number %% 2 == 0) else.if statement that checks whether the given number is even or odd using the modulo operator (%%).number / 2 is 0, the number is even, and the function returns the string "Even".