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. I wanted to visit and let you know how considerably I appreciated discovering your web site today.

    I’d consider it the honor to work at my place of work and be able to
    use the tips contributed on your web site and also be a part of visitors’
    remarks like this. Should a position connected with guest article
    author become available at your end, remember to let me know.

    Look at my web-site :: lysto-forum.tue-image.nl

  2. Hey there! Do you know if they make any
    plugins to help with Search Engine Optimization? I’m trying to
    get my blog to rank for some targeted keywords but I’m not seeing very good results.
    If you know of any please share. Appreciate it!

  3. Howdy this is somewhat of off topic but I was wondering if blogs use WYSIWYG editors or if
    you have to manually code with HTML. I’m starting a blog soon but have
    no coding expertise so I wanted to get guidance
    from someone with experience. Any help would be enormously appreciated!

    Feel free to surf to my web site – Xoth CBD Price

  4. A motivating discussion is worth comment. I believe that
    you ought to publish more about this subject, it might not be a
    taboo subject but usually folks don’t discuss such issues.
    To the next! Best wishes!!

  5. Hi there i am kavin, its my first occasion to commenting anyplace, when i read this paragraph i thought i could also
    make comment due to this sensible article.

  6. Have you ever considered about including a little bit more than just
    your articles? I mean, what you say is fundamental and all.
    Nevertheless think about if you added some great pictures or video clips to give your
    posts more, “pop”! Your content is excellent but with images and videos, this blog could certainly be one of the most
    beneficial in its field. Superb blog! scoliosis
    surgery https://coub.com/stories/962966-scoliosis-surgery scoliosis surgery

  7. I loved as much as you’ll receive carried out right here.

    The sketch is tasteful, your authored subject matter stylish.

    nonetheless, you command get bought an shakiness over that you
    wish be delivering the following. unwell unquestionably come further formerly again as exactly the same nearly very often inside case you shield this hike.
    quest bars https://www.iherb.com/search?kw=quest%20bars quest bars

Comments are closed.