Advertisement
Guest User

55

a guest
Feb 24th, 2020
72
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.56 KB | None | 0 0
  1.  
  2. var punkty=prompt ("Ile punktów otrzymałeś ze sprawdzianu?","");
  3.  
  4. if(punkty<0){
  5. document.write("błędna wartość");
  6. }
  7.  
  8. else if(punkty<14){
  9. document.write("ocena niedostateczna");
  10. }
  11.  
  12. else if(punkty<20){
  13. document.write("ocena dopuszczająca");
  14. }
  15.  
  16. else if(punkty<27){
  17. document.write("ocena dostateczna");
  18. }
  19.  
  20. else if(punkty<35){
  21. document.write("ocena dobra");
  22. }
  23.  
  24. else if(punkty<43){
  25. document.write("ocena bardzo dobra");
  26. }
  27.  
  28. else if(punkty<46){
  29. document.write("ocena celująca");
  30. }
  31.  
  32. else {
  33. document.write("błędna wartość");
  34. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement