Popular posts from this blog
Prints "Hello World" in JAVA. How to print hello world in java.
Prints "Hello World" in JAVA. For the detailed explaination about code click on link below :: Youtube video link for detailed explination. #1 For Practice copy the code below :: package google; public class javawithnilesh { public static void main (String args[]) { System.out.println("'Hello World "); } }
Making a Calculator with the help of java programming.
Copy the code below for practice. // nileshdeoree.blogspot.com package google ; import java.util.Scanner; public class Calculator { public static void main (String args[]){ Scanner input=new Scanner (System.in); char Y,condition,operator; float a,b,result; System.out.println("Enter your first number"); a=input.nextFloat(); System.out.println("Enter your second number"); b=input.nextFloat(); System.out.println("Enter an operator"); operator = input.next().charAt(0); switch(operator){ case '+': ...
Comments
Post a Comment