Ask your own question, for FREE!
Computer Science 17 Online
OpenStudy (anonymous):

Write a Java program to check the smallest value between two numbers.(5&10)

OpenStudy (tacotime):

Try an if statement.

OpenStudy (anonymous):

Here comapring two value. The esaiest way I think is the following code : public class SmallDemo{ public static void main(String[] arg){ int value1 = 5; int value2 = 10; if(value1 < value2){ System.out.println(value1 + " smaller than " + value2); }else{ System.out.println(value2 + " smaller than " + value1); } } }

OpenStudy (woodrow73):

minor adjustment to above code in the else block: ``` System.out.println(value2 + " smaller than or equal to " + value1); ```

Can't find your answer? Make a FREE account and ask your own questions, OR help others and earn volunteer hours!

Join our real-time social learning platform and learn together with your friends!
Can't find your answer? Make a FREE account and ask your own questions, OR help others and earn volunteer hours!

Join our real-time social learning platform and learn together with your friends!