Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- # ---- -2 ---- -1 ---- 0 ---- 1 ---- 2 ----
- x = remove(vysledok)
- x = rnorm(1)
- x = .5
- if(x > 1) {
- vysledok = "x je vacsie ako 1"
- } else {
- vysledok = "x je mensie ako 1"
- }
- vek = 25
- # Verzia 1
- # if(vek >= 18){
- # status = "Dostanes vodicak..."
- # } else {
- # status = "Nedostanes vodicak..."
- # }
- # Verzia 2 overenie seniory
- # if(vek < 18) {
- # status = "Nedostanes vodicak..."
- # } if (vek < 90){
- # status = "Dostanes vodicak..."
- # } else {
- # status = "Nedostanes vodicak..."
- # }
- # Verzia 3 overenie seniory skratene
- if((vek >= 18) & (vek < 90)) {
- status = "Dostanes vodicak..."
- } else {
- status = "Nedostanes vodicak..."
- }
Advertisement
Add Comment
Please, Sign In to add comment