Exer 4

You might also like

Download as txt, pdf, or txt
Download as txt, pdf, or txt
You are on page 1of 1

package imbuido_e2k_exer4;

import java.io.*;

/**
*
* @Imbuido 09_12_2022
*/
public class Imbuido_E2k_exer4 {
public static void main(String[] args) {

BufferedReader dataIn = new BufferedReader(new


InputStreamReader(System.in));

String Word1 = " ", Word2 = " ",Word3 = " ";

System.out.print("Enter Word1:");
try{
Word1 = dataIn.readLine();
}catch (IOException e ){
System.out.println("Error!");
}

System.out.print("Enter Word2:");
try{
Word2 = dataIn.readLine();
}catch (IOException e ){
System.out.println("Error!");
}

System.out.print("Enter Word3:");
try{
Word3 = dataIn.readLine();
}catch (IOException e ){
System.out.println("Error!");
}
System.out.println(Word1 + " " + Word2 + " " + Word3 + " ");
}
}

You might also like