Posts

Showing posts from April, 2025

PPB A - Tugas 7

Image
  Nama: Schaquille Devlin Aristano NRP: 5025211211 Kelas: PPB A Link Source Code:  https://github.com/noviceThelizard/PPB_A_TUGAS_7 Screenshot:  

PPB A - Tugas 6

Image
  Nama: Schaquille Devlin Aristano NRP: 5025211211 Kelas: PPB A Membuat program konversi mata uang Kode:  fun convert(input: Double, currency: String): Double {     when(currency)     {         "RUB" -> return(input * 0.004873)         "CNY" -> return(input * 0.000433)         "KPW" -> return(input * 0.050000)         "CUP" -> return(input * 0.001527)         "PKR" -> return(input * 0.020000)         "AFN" -> return(input * 0.004272)         "MYR" -> return(input * 0.000261)         "THB" -> return(input * 0.001978)         "LAK" -> return(input * 1.280000)         "PHP" -> ...