:::::JAVA PROGRAM ::::
import java.io.*;
class greatest
{
public static void main(String args[])throws IOException
{
int a,b,c;
BufferedReader in=new BufferedReader(new InputStreamReader(System.in));
System.out.println("enter 3 numbers");
a=Integer.parseInt(in.readLine());
b=Integer.parseInt(in.readLine());
c=Integer.parseInt(in.readLine());
if (a>b && a>c)
System.out.println("greatest is"+" "+a);
else if(b>a && b>c)
System.out.println("greatest is"+" "+b);
else
System.out.println("greatest is"+" "+c);
}
}
Please can anyone explain step by step what is happening in the program and what does this line means` BufferedReader in=new BufferedReader(new InputStreamReader(System.in));` in above program and detail regarding that and what are tokenizer and were is it used?