Posts

Showing posts from September, 2022

Latihan Pemrograman Sekuensial

Image
Source Code: package com.mycompany.kimberliejava1; import java.util.Scanner; public class KimberlieJava1 {     public static void main(String[] args) {         Scanner sc = new Scanner(System.in);                  int beratberas, hargaberas, totalbiaya, diskon, hargasetelahdiskon, jumlahuang, uangkembalian;                          System.out.println("Kasur Warung Beras");         System.out.println("Kim Rice Shop");         System.out.println("Masukkan Berat Beras (kg) : ");         beratberas = sc.nextInt();         System.out.println("Masukkan Harga Beras Per (kg) : ");         hargaberas = sc.nextInt();         totalbiaya = beratberas*hargaberas;         System.out.println("Total Biaya Pembayaran : "+totalbi...

Bahasa Pemrograman 1 22082010200

Image
 Nama: Kimberlie Cindy Kolopaking package javaapplication2; public class JavaApplication2 {     public static void main(String[] args) {         // TODO code application logic here         System.out.println("hello kimberlie");         System.out.println("hello world");     }      }