Langsung ke konten utama

Postingan

Menampilkan postingan dari Maret, 2022

PBO-P Source Code Aplikasi Kasir Pikacu Pada Bagian Form Login

/*  * 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 projek; import javax.swing.JOptionPane; /**  *  * @author BINTANG AMRI PUTRA  */ public class formlogin extends javax.swing.JFrame {     /**      * Creates new form formlogin      */     public formlogin() {         initComponents();     }     /**      * This method is called from within the constructor to initialize the form.      * WARNING: Do NOT modify this code. The content of this method is always      * regenerated by the Form Editor.      */     @SuppressWarnings("unchecked")     // <editor-fold defaultstate="collapsed" desc="Generated Code">//GEN-BEGIN:initComponents     ...

PBO-P Membuat Program Kasir PIKACHU Menggunakan Bahasa Pemrograman Java

Source Code Program Pikacu Kasir Menggunakan Bahasa Java Bintang Amri Putra Program Studi Teknik Informatika Angkatan 2021   Source Code Program Pikacu Kasir /*  * 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 latihan1; //kemasan latihan1 import javax.swing.JOptionPane //suatu perintah untuk memasukkan suatu method          //atau perintah dalam bahasa pemograman java  /**  *  * @author Bintang Amri Putra  * tanggal 28/03/2022 10:00  */ public class Login extends javax.swing.JFrame { //sebagai isi folder packeg yang      //nantinya dapat diisi dengan beberapa argumen sehingga dapat lebih memudahkan     //kita saat mencari data /**      * Creates new form Login      */...

PBO-P Membuat Pola Segitiga Bintang Menggunakan Java

Berikut Source Code : /*  * 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 latihan1; /**  *  * @author Bintang Amri Putra  * 21/03/2022  */ public class Latihan1 {     /**      * @param args the command line arguments      */     public static void main(String[] args) {       int n=5;       int a;       for(a=0; a<=n; a++){           for(int z=n; z>=a; z--){               System.out.print(" ");           }           for(int x=0; x<=a; x++){               System.out.print("* ");           }              ...