Advertisement
Guest User

Untitled

a guest
Sep 16th, 2019
103
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.42 KB | None | 0 0
  1. document.write("<h3> ZAD 2</h3>");
  2. var y=prompt("Ile masz lat?", "");
  3. if (y > 18){
  4. document.write("Masz odpowiedni wiek!");
  5. }else
  6. {
  7. document.write("Jestes za mlody");
  8. }
  9. document.write ("<h3>ZAD 3</h3>");
  10. var wzrost=prompt("Podaj wzrost:","");
  11. if(wzrost < 150)
  12. {document.write("JESTES NISKI");}
  13. else if ((wzrost > 150) &&(wzrost < 180))
  14. {document.write("JESTES SREDNI");}
  15. else {
  16. document.write(" JESTES WYSOKI");}
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement