Advertisement
hidden2209

Kode Kalkulator Sederhana Notepad

Oct 9th, 2015
1,319
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.05 KB | None | 0 0
  1. @echo off
  2. title Kalkulator Sederhana By HIDDEN2209
  3. mode 60,10
  4. color 0a
  5.  
  6. :mulai
  7. cls
  8. echo.
  9. echo # (c) 2015 nubie-nulis.blogspot.co.id #
  10. echo /
  11. set /p a1=/ Ketik Angka Pertama =
  12. set /p operasi=/ Pilih (*, +, -, /) =
  13. set /p a2=/ Ketik Angka Kedua =
  14. set /a "hasil" = a1%operasi%a2
  15. echo / Hasil dari %a1% %operasi% %a2% = %hasil%
  16. echo / Ulangi ? Ketik Y lalu ENTER!
  17. set /p ulang=/
  18.  
  19.  
  20. if %ulang%== y goto new
  21. if %ulang%== Y goto new
  22.  
  23. pause>null
  24. gotonew
  25.  
  26. :new
  27. cls
  28. echo.
  29. echo # (c) 2015 nubie-nulis.blogspot.co.id #
  30. echo /
  31. set /p a1=/ Ketik Angka Pertama =
  32. set /p operasi=/ Pilih (*, +, -, /) =
  33. set /p a2=/ Ketik Angka Kedua =
  34. set /a "hasil" = a1%operasi%a2
  35. echo / Hasil dari %a1% %operasi% %a2% = %hasil%
  36. echo / Ulangi ? Ketik Y lalu ENTER!
  37. set /p ulang=/
  38.  
  39.  
  40. if %ulang%== y goto mulai
  41. if %ulang%== Y goto mulai
  42.  
  43. :pembuat
  44. title About Author
  45. mode 50,7
  46. color 0a
  47.  
  48. echo.
  49. echo Author : HIDDEN2209
  50. echo Email : [email protected]
  51. echo Site : www.nubie-nulis.blogspot.com
  52.  
  53. :author
  54. echo.
  55. set /p a= Thanks for Support !
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement