+ 19
Without using if else statement and ternary operators ,accept 3 unequal no & display the 2nd smallest no.
by using scanner or inputstreamreader classes
2 odpowiedzi
+ 23
take the numbers in an int array ,
use Arrays.sort (arrayname);
and then print , arrayname (1);
// 2nd smallest no. without if-else , ternary op. 👍
+ 1
hii