Skip to content

Instantly share code, notes, and snippets.

@sihandry
Created June 22, 2020 15:23
Show Gist options
  • Select an option

  • Save sihandry/76d3a8bae3e8f2b11ea5df879128756e to your computer and use it in GitHub Desktop.

Select an option

Save sihandry/76d3a8bae3e8f2b11ea5df879128756e to your computer and use it in GitHub Desktop.
Contoh aplikasi untuk medium engineer palsu
# Fungsi menghitung kecepatan
def kecepatan(jarak, waktu):
hasil = float(jarak) / float(waktu)
return hasil
# Fungsi menghitung jarak
def jarak(kecepatan, waktu):
hasil = float(kecepatan) * float(waktu)
return hasil
# Fungsi menghitung waktu
def waktu(jarak, kecepatan):
hasil = float(jarak) / float(kecepatan)
return hasil
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment