Here, we will read the value of three integer variables from the user and find the largest among them using the ternary operator then print the largest number on the console screen.
The source code to find the largest number among the three numbers using the ternary operator is given below. The given program is compiled and executed on the ubuntu 18.04 operating system successfully.
// Scala program to find the largest number among
// three numbers using ternary operator
object Sample{
def main(args:Array[String]){
var num1:Int=0
var num2:Int=0
var num3:Int=0
var large:Int=0
print("Enter number1: ")
num1 = scala.io.StdIn.readInt()
print("Enter number2: ")
num2 = scala.io.StdIn.readInt()
print("Enter number3: ")
num3 = scala.io.StdIn.readInt()
large = if (num1 > num2 && num1 > num3) num1 else if(num2 > num1 && num2 > num3) num2 else num3
println("Largest number is: "+large)
}
}
Output:
Enter number1: 10
Enter number2: 20
Largest number is: 20
Explanation:
In the above program, we used an object-oriented approach to create the program. Here, we created an object Sample. We defined main() function. The main() function is the entry point for the program.
In the main() function, we created three integer variables num1, num2, num3. Then we read the value of variables from the user. After that, we found the largest number from them using the ternary operator and print the result on the console screen.
Note: In the Scala ternary operator using the if-else construct, Scala does not support the traditional ternary operator.
Program/Source Code:
The source code to find the largest number among the three numbers using the ternary operator is given below. The given program is compiled and executed on the ubuntu 18.04 operating system successfully.
Output:
Explanation:
In the above program, we used an object-oriented approach to create the program. Here, we created an object Sample. We defined main() function. The main() function is the entry point for the program.
In the main() function, we created three integer variables num1, num2, num3. Then we read the value of variables from the user. After that, we found the largest number from them using the ternary operator and print the result on the console screen.
Note: In the Scala ternary operator using the if-else construct, Scala does not support the traditional ternary operator.
need an explanation for this answer? contact us directly to get an explanation for this answer