R_Code-15.r
Source Code
Printing the code
To print this file, open it on GitHub and click Raw before printing, or use the Download Raw button above and print directly from that page.
r
# Asking for a name
name <- readline(prompt = "Enter your name: ")
# Asking for a number (requires conversion)
age <- readline(prompt = "Enter your age: ")
age <- as.numeric(age)
print(paste("Hello", name, "you are", age, "years old."))1
2
3
4
5
6
7
8
2
3
4
5
6
7
8