bsc

Comprehensive codebase and cou...
Log | Files | Refs | README | LICENSE

R_Code-5.r (382B)


      1 # Author: Amit Dutta (amitdutta4255@gmail.com) | Date: 19 Mar 2026
      2 # Repo: https://github.com/notamitgamer/bsc
      3 # License: MIT
      4 
      5 # You have a vector of numbers: x <- c(12, 9, 23, 14). 
      6 # Use R's shorthand ifelse() function to output "EVEN" if a number 
      7 # in the vector is divisible by 2 (x %% 2 == 0), and "ODD" if it is not. 
      8 
      9 x <- c(12, 9, 23, 14)
     10 ifelse(x %% 2 == 0, "EVEN", "ODD")
© notamitgamer • Site Built: 2026-07-21 13:58:23 UTC • git-mirror commit: 1037f62 [view raw info]
Originally created with stagit • modified by notamitgamer
Forked from github.com/notamitgamer/git-mirror