IT-Academy

R Nacitanie Cisel

Aug 22nd, 2017
145
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
R 0.19 KB | None | 0 0
  1. precitajCislo <- function()
  2. {
  3.   n <- readline(prompt="Zadaj svoj vek: ")
  4.   n <- as.integer(n)
  5.   if (is.na(n)){
  6.     n <- precitajCislo()
  7.   }
  8.   return(n)
  9.  
  10.  
  11. }
  12.  
  13. print(precitajCislo())
Advertisement
Add Comment
Please, Sign In to add comment