Posts
Showing posts from May, 2020
Java Programs and Outputs
- Get link
- X
- Other Apps
Program 1: display simple “Hello JAVA” Message. Input: class Hsimple { public static void main(String args[]) { System.out.println("Hello JAVA"); } } Output: Program 2: perform basic arithmetic Operation in java. Input: class Basicmath { public static void main(String args[]) { System.out.println("\t\tArithmatic Operator\n"); System.out.println("Integer Arithmatic"); int a = 1+1; int b = a*3; int c = b/4; int d = c-a; int e = -d; System.out.println("a = " +a); System.out.println("b = " +b); System.out.println("c = " +c); System.out.println("d = " +d); System.out.println("e = " +e); } } Output: Program 3: Implementation of Class, Object & Methods in java. Input: class Box { double width; double height; double depth; } class BoxDemo{ pub...