PROGRAM KASIR
.png)
package com.mycompany.kasirwarungberasengie; import java.util.Scanner; /** * * @author lenovo */ public class KasirWarungBerasENGIE { public static void main(String[] args) { Scanner sc = new Scanner(System.in); int beratberas, hargaberas, totalbayar, hargapotongan, hargasetelahpotongan, uangpembeli, kembalian; System.out.println("Kasir Warung Beras Engie"); System.out.print("Berat Beras (Kg) : "); beratberas = sc.nextInt(); System.out.print("Harga Beras (Rp) : "); hargaberas = sc.nextInt(); totalbayar = beratberas*hargaberas; System.out.println("Total Bayar : " +totalbayar); ...