Console implements functions for displaying the stated values on the terminal i.e, with print, println, and printf we can post to the display. It is also utilized in reading values from the Console with the function from scala.io.StdIn. It is even helpful in constructing interactive programs. Let’s discuss it in detail and also lets see some examples related to it.
- println: It is utilized in putting down values to the Console and moreover computes a trailing newline. we can pass any types as argument to it.
- Print: It is equivalent to println but it does not computes any trailing line. It puts down the data to the beginning of the line.
- printf: This is helpful in writing format strings and also places extra arguments. Example:
Scala
object GfG
{
def main(args : Array[String])
{
Console.println("GeeksforGeeks")
print("CS")
print(" _ portal")
println()
printf("Age = % d", 24 )
}
}
|
Output:
GeeksfoGeeks
CS_portal
Age = 24
- The println and Console.println both are equivalent.
- readLine(): It is a method in which user gives inputs in the pattern of String from the keyboard. Example:
Scala
object GfG
{
def main(args : Array[String])
{
while ( true ) {
val result = scala.io.StdIn.readLine()
printf("Enter the String : % s", result)
println()
}
}
}
|
Output:
//giving user defined inputs
GfG
//output by readline
Enter the String: Gfg
//again giving inputs
Nidhi
//output
Enter the String: Nidhi
- Here, the while loop is infinite in nature and after giving user inputs the variable will contains that (GfG) string and if again we given any input then the variable will contain that (Nidhi) input.
Whether you're preparing for your first job interview or aiming to upskill in this ever-evolving tech landscape,
GeeksforGeeks Courses are your key to success. We provide top-quality content at affordable prices, all geared towards accelerating your growth in a time-bound manner. Join the millions we've already empowered, and we're here to do the same for you. Don't miss out -
check it out now!
Last Updated :
28 Nov, 2022
Like Article
Save Article