Contoh Soal Pemrograman – Menghitung Biaya Parkir

Pemrograman Python

Berikut adalah contoh soal menggunakan bahasa pemrograman Python.

Buatlah program Python untuk menghitung biaya parkir di sebuah rumah sakit berdasarkan lama parkir. Lama parkir dihitung dari selisih jam masuk dan jam keluar. Jam masuk dan jam keluar diisi 1-24. Biaya parkir adalah Rp. 2.000,- per jam.

Contoh tampilan program:
Jam masuk    : 10 (input)
Jam keluar     : 14 (input)
Lama parkir  : 4 jam (keluaran program)
Biaya parkir  : 8000 (keluaran program)

Berikut kode program yang dapat dibuat untuk menyelesaikan soal tersebut.


jam_masuk = int(input("Jam Masuk  : "))
jam_keluar = int(input("Jam Keluar  : "))

lama_parkir = jam_keluar - jam_masuk
biaya_parkir = lama_parkir * 2000

print("Lama Parkir : ", lama_parkir)
print("Biaya Parkir : ", biaya_parkir)

3,444 thoughts on “Contoh Soal Pemrograman – Menghitung Biaya Parkir

  1. Greetings from Idaho! I’m bored to tears at work so I decided to check out your site on my iphone during
    lunch break. I enjoy the information you present here and can’t wait to take a look when I
    get home. I’m amazed at how fast your blog loaded on my cell phone ..

    I’m not even using WIFI, just 3G .. Anyways, wonderful site!

  2. Great article! Solely had culture to read the inception, but I’ve already added it to my favorites. I resolution undoubtedly mound my friends about it. Make a note more.

  3. I liked as much as you will obtain carried out proper here.
    The comic strip is tasteful, your authored subject matter stylish.

    however, you command get got an impatience over that you wish be
    turning in the following. sick definitely
    come more earlier once more as precisely the similar nearly very often inside of case you defend this increase.

    Have a look at my blog; DivineDynamic Keto

  4. I do not even know how I ended up here, but I thought this post was good.
    I do not know who you are but certainly you are going to a famous blogger if you aren’t already 😉 Cheers!

    Check out my site bbs.ranmao.com

  5. I love what you guys are usually up too. This type
    of clever work and reporting! Keep up the wonderful
    works guys I’ve incorporated you guys to blogroll.

  6. I have been surfing on-line greater than three hours lately, yet I never found any fascinating article like yours.
    It’s beautiful price sufficient for me. In my opinion, if all web owners and
    bloggers made just right content material as you probably did, the web will
    probably be a lot more useful than ever before.

  7. It’s very trouble-free to find out any topic on net as compared to books,
    as I found this piece of writing at this web site.

  8. Hi there! This is kind of off topic but I need some advice from an established blog.
    Is it very hard to set up your own blog?
    I’m not very techincal but I can figure things out pretty fast.
    I’m thinking about making my own but I’m not sure where to start.
    Do you have any tips or suggestions? Cheers

    Review my blog post; Mack And Sons CBD Oil

Comments are closed.