|
|
| how to calculate max and min |
Expert:Asri
hye!i'm a new for the java and i want to ask a question . Could anyone help me to teach how to calculate the maximum and minimum using java language. |
| Answers |
Hi friend,
In Math class having two function max and min in java.
public class MathMaxMin { public static void main(String args[]) { // Method for the max number among the pair of numbers System.out.println("Method results"); System.out.println("Math.max(5,8) " + Math.max(5,8)); byte bt = 8; double dt = 10.0; //Method for the max value between the values of bt // dt variables System.out.println("Math.max(bt, dt) "+Math.max(bt, dt));
// Method for the min number among the pair of number System.out.println("Method results"); System.out.println("Math.min(5,8) " + Math.min(5,8)); byte btm = 7; double dtm = 10.0; //Method for the max value between the values of btm // dtm variables System.out.println("Math.min(btm, dtm) " +Math.min(btm, dtm)); } }
For read more information to visit the link........
http://www.roseindia.net/java/beginners/MathClass.shtml
Thanks
|
Hi friend,
In Math class having two function max and min in java.
public class MathMaxMin { public static void main(String args[]) {
// Method for the maximum number among the pair of numbers System.out.println("Method results"); System.out.println("Math.max(5,8) " + Math.max(5,8));
byte bt = 8; double dt = 10.0; //Method for the max value between the values of bt // dt variables System.out.println("Math.max(bt, dt) "+Math.max(bt, dt));
// Method for the minimum number among the pair of number System.out.println("Method results"); System.out.println("Math.min(5,8) " + Math.min(5,8));
byte btm = 7; double dtm = 10.0; //Method for the minimum value between the values of btm // dtm variables System.out.println("Math.min(btm, dtm) " +Math.min(btm, dtm));
} }
For read more information to visit the link........
http://www.roseindia.net/java/beginners/MathClass.shtml
Thanks
|
| More Questions |
|
|
Post Answers
Ask Question
Facing Programming Problem?
|
|
|
|
|