TI

Pertanyaan

Coding Membuat aplikasi dari java

1 Jawaban

  • menentukan bilangan ganjil genap:
    /*
     * 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 ganjil.genap;

    import java.util.Scanner;

    /**
     *
     * @author GUNAWAN
     */
    public class GanjilGenap {

        /**
         * @param args the command line arguments
         */
        public static void main(String[] args) {
            // TODO code application logic here
       int a,cek;
            Scanner data = new Scanner (System.in);
            System.out.print("Masukan angka yang ingin dicek:");
            a = data.nextInt();
           
            if (a%2==0){
                System.out.println(a+" adalah bilangan GENAP");
            }
            else{
                System.out.println(a+" adalah bilangan GANJIL");
            }
           
        }
       
    }


Pertanyaan Lainnya