Postingan

Menampilkan postingan dengan label homework

Java Program to get input from User from Console or command line- Example Tutorial Code

Gambar
How to get input from user in Java from command line or console is one of the common thing ,every one started learning Java looks for. It’s second most popular way of starting programming after HelloWorld in Java. There are so many ways to get input from User in Java including command line and Graphical user interface. For beginner simpler the example, better it is. first and foremost way of getting input from user is String[] passed to main method in Java but that only work for one time requirement and its not interactive. Another way of getting input from User is involving IO classes like InputStream to read from console or command line which can be little complicated for true beginner. Thanks to Java 5 which added a nice utility class called Scanner, has made task of getting input from user very easy. Scanner is powerful and allows you to get any kind of input from User e.g. String, int, float etc. On the other hand if you are looking to use a GUI for getting input from user than b...

Java program to calculate area of Triangle - Homework, programming exercise example

Gambar
Write a Java program to calculate Area of Triangle , accept input from User and display output in Console is one of the frequently asked homework question. This is not a tough programming exercise but a good exercise for beginners and anyone who has started working in Java. For calculating area of triangle using formula 1/2(base*height), you need to use arithmetic operator. By doing this kind of exercise you will understand how arithmetic operators works in Java, subtle details which affect calculation like precedence and associativity of operator etc. Fortunately this question is not very popular on Java interview like other exercise we have seen e.g. Java program to print Fibonacci series and Java program to check for palindrome. Nevertheless its a good Java homework. Calculate area of Triangle in Java How to calculate area of Triangle in Java In this section we will see complete code example of How to calculate area of Triangle in Java . We are going to use classic formula 1/2(ba...