In R, conditionals are used to control the flow of execution based on
certain conditions. The most common conditional statement is the
if-else statement.
# An if-else statement
x <- 10
if (x > 5) {
print("x is greater than 5")
} else {
print("x is not greater than 5")
}
## [1] "x is greater than 5"
if-else statement that checks if a number is
positive or negative.# Your code here
num <- -5
if(num>=0){
print("Positive")
}else{
print("Negative")
}
## [1] "Negative"
if-else statement that checks if a person is
eligible to vote (age >= 18).# Your code here
age <- 17
if(age>=18){
print("Eligible")
}else{
print("Not Eligible")
}
## [1] "Not Eligible"
check_grade that takes a numeric
grade as input and returns “Pass” if the grade is 50 or above, and
“Fail” otherwise.# Your code here
check_grade <- function(grade){
if(grade>=50){
print("Pass")
}else{
print("Fail")
}
}
check_grade(47)
## [1] "Fail"
# Your code here
odd_even_checker <- function(num){
if(num%%2 == 0){
print("Even")
}else{
print("Odd")
}
}
odd_even_checker(3)
## [1] "Odd"
# Your code here
pos_neg_zero_checker <- function(num){
if(num == 0){
print("The number is zero")
}else if(num>0){
print("The number is positive")
}else{
print("The number is negative")
}
}
pos_neg_zero_checker(0)
## [1] "The number is zero"
pos_neg_zero_checker(3)
## [1] "The number is positive"
pos_neg_zero_checker(-4)
## [1] "The number is negative"
# Your code here
is_null <- function(str){
if(nchar(str)==0){
print("String is empty")
}else{
print("String is not empty")
}
}
is_null("")
## [1] "String is empty"
is_null("string")
## [1] "String is not empty"
# Your code here
input_vec <- c(1,2,3,4,5)
element_checker <- function(elem){
if(elem %in% input_vec){
print("Vector contains the element")
}else{
print("Vector does not contain the element")
}
}
element_checker(6)
## [1] "Vector does not contain the element"
element_checker(3)
## [1] "Vector contains the element"
# Your code here
is_between <- function(num, lower, upper){
if(num>lower && num<upper){
print("Is between")
}else{
print("Is NOT between")
}
}
is_between(3,4,5)
## [1] "Is NOT between"
is_between(3,1,5)
## [1] "Is between"
# Your code here
is_leap_year <- function(year){
if((year %% 4 == 0 && year %% 100 != 0) || (year %% 400 == 0)){
print("Leap year")
}else{
print("Not leap year")
}
}
is_leap_year(2025)
## [1] "Not leap year"
is_leap_year(2024)
## [1] "Leap year"
# Your code here
is_prime <- function(num) {
if (num <= 1) {
print("Not a prime number")
return()
}
for (i in 2:(num - 1)) {
if (num %% i == 0) {
print("Not a prime number")
return()
}
}
print("Prime number")
}
is_prime(7)
## [1] "Prime number"
is_prime(10)
## [1] "Not a prime number"
## NULL
# Your code here
assign_grade <- function(score) {
if (score >= 90) {
print("A")
} else if (score >= 80) {
print("B")
} else if (score >= 70) {
print("C")
} else if (score >= 60) {
print("D")
} else {
print("F")
}
}
assign_grade(95)
## [1] "A"
assign_grade(72)
## [1] "C"
assign_grade(42)
## [1] "F"
# Your code here
is_perfect_square <- function(num){
if(num<0){
print("Not perfect square")
return()
}
sqrt_num <- sqrt(num)
if(sqrt_num == floor(sqrt_num)){
print("Perfect square")
}else{
print("Not perfect square")
}
}
is_perfect_square(16)
## [1] "Perfect square"
is_perfect_square(12)
## [1] "Not perfect square"
# Your code here
is_palindrome <- function(num) {
num_str <- as.character(num)
reversed_str <- paste(rev(strsplit(num_str, "")[[1]]), collapse = "")
if (num_str == reversed_str) {
print("Palindrome")
} else {
print("Not a Palindrome")
}
}
is_palindrome(121)
## [1] "Palindrome"
is_palindrome(123)
## [1] "Not a Palindrome"