Postingan

Menampilkan postingan dari September, 2022

Pemrograman ke 2 (Sekuensial) 22082010214

Gambar
 Nama: Adrian Noval Firmansyah NPM: 22082010214 Kelas Parallel: E package warungberassederhana; // Warung beras  import java.util.Scanner; public class Sekuensial {     public static void main(String[] args) {         // Warung beras sederhana          Scanner A = new Scanner(System.in);         int Harga;         int total; int jumlah; int Diskon; int Hargasetelahdiskon; int Jumlahuang; int Jumlahkembalian;         System.out.println("Kasir warung barokah gate 1");         System.out.println("");         System.out.print("masukkan harga beras per KG :");         Harga = A.nextInt();         System.out.print("Jumlah beras yang dibeli = ");         jumlah = A.nextInt();             total = Harga*jumlah;         System...

Pemrograman ke 1 22082010214

Gambar
  /*  * To change this license header, choose License Headers in Project Properties.  * To change this template file, choose Tools | Templates  * and open the template in the editor.  */ package helloworld; /**  *  * @author noval  */ public class Helloworld {     /**      * @param args the command line arguments      */     public static void main(String[] args) {         // TODO code application logic here         // Nama: Adrian Noval Firmansyah         // NPM: 22082010214         // Kelas parallel: E                  System.out.println("hello world.");         System.out.println("Aku cinta UPNVJT.");     }      }