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. Heya just wanted to give you a brief heads up and let you know
    a few of the images aren’t loading correctly. I’m not sure
    why but I think its a linking issue. I’ve tried it in two different web browsers and both show the
    same results.

  2. Hello my loved one! I want to say that this article is amazing, nice written and
    come with almost all important infos. I’d like to look
    more posts like this .

  3. I believe everything wrote was actually very logical. But, what about this?

    what if you typed a catchier title? I ain’t suggesting your information is not solid., however what if you added a headline that makes people want
    more? I mean Contoh Soal Pemrograman – Menghitung
    Biaya Parkir – Umar faisol is a little vanilla. You should
    look at Yahoo’s home page and note how they create
    news headlines to get people interested. You might add a video
    or a related picture or two to grab readers interested about what you’ve got to say.
    Just my opinion, it could bring your posts a little bit more
    interesting.

  4. Hi there Dear, are you in fact visiting this web site daily, if so
    afterward you will definitely obtain pleasant knowledge.

  5. Hmm is anyone else encountering problems with the pictures
    on this blog loading? I’m trying to determine if its a problem on my end or
    if it’s the blog. Any feed-back would be greatly appreciated.

  6. Hello there, You’ve done a great job. I will definitely digg it and personally suggest to my friends.

    I am sure they’ll be benefited from this site.

  7. I loved as much as you will receive carried out right
    here. The sketch is tasteful, your authored material stylish.

    nonetheless, you command get bought an impatience over that you wish be delivering the
    following. unwell unquestionably come more formerly
    again as exactly the same nearly very often inside case you shield this hike.

  8. Right now it appears like Expression Engine is the preferred blogging platform out there right now.
    (from what I’ve read) Is that what you are using on your blog?

  9. Its such as you read my mind! You appear to grasp so much approximately this,
    like you wrote the guide in it or something. I believe that you
    simply can do with a few p.c. to power the message house a
    bit, but other than that, this is wonderful blog.
    A fantastic read. I’ll definitely be back.

  10. Attractive element of content. I just stumbled upon your weblog and in accession capital to say that I get in fact loved account your weblog posts.

    Any way I will be subscribing in your augment and even I success you get right of entry to constantly rapidly.

  11. I don’t know if it’s just me or if perhaps everybody
    else encountering issues with your blog. It appears like some of the written text within your posts are running off the screen. Can somebody else please provide
    feedback and let me know if this is happening to them too?
    This may be a issue with my internet browser because I’ve
    had this happen before. Appreciate it

  12. For newest information you have to pay a visit web and on the web I found this web site as a most excellent web page for most up-to-date updates.

  13. Hi there, I check your new stuff like every week.
    Your story-telling style is witty, keep doing what you’re doing!

  14. each time i used to read smaller posts that also clear
    their motive, and that is also happening with this piece of writing which I am reading at this place.

  15. Hi, I do believe this is an excellent blog. I stumbledupon it 😉 I will come back yet again since i have book-marked
    it. Money and freedom is the best way to change,
    may you be rich and continue to guide others.

Comments are closed.