bsc

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

root / semester_1 / R / Code / R_Code-15.r

R_Code-15.r (239B)


      1 # Asking for a name
      2 name <- readline(prompt = "Enter your name: ")
      3 
      4 # Asking for a number (requires conversion)
      5 age <- readline(prompt = "Enter your age: ")
      6 age <- as.numeric(age) 
      7 
      8 print(paste("Hello", name, "you are", age, "years old."))
© notamitgamer • Site Built: 2026-09-05 01:53:16 UTC • git-mirror commit: c170d72 [view raw info]
Originally created with stagit • modified by notamitgamer
Forked from github.com/notamitgamer/git-mirror