Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- #include <Constants.au3>
- $applName = "Menghitung Tahun Kabisat"
- $x = InputBox($applName, "Masukan Tahun ",6)
- $y = Mod(Int($x),4)
- if ($y=0) Then
- MsgBox($MB_SYSTEMMODAL, $applName, $x & " adalah Tahun Kabisat!")
- Else
- MsgBox($MB_SYSTEMMODAL, $applName, $x & " adalah BUKAN Tahun Kabisat!")
- EndIf
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement