Latihan Array 1 Dimensi
Nama :Salsabiela Hernawan NPM : 22082010180 Pararel : E /* * 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 javaapplication4; import java.util.Scanner; /** * * @author Salsabiela Hernawan */ public class JavaApplication4 { /** * @param args the command line arguments */ public static void main(String[] args) { Scanner s; s = new Scanner(System.in); String makanan[]; makanan = new String[5]; int harga[] = new int[5]; int porsi[] = new int[5]; int indeks=0;//index array int GrandTotal; int jum...