Java End-of-file

  • + 0 comments
    import java.io.*;
    import java.util.*;
    import java.text.*;
    import java.math.*;
    import java.util.regex.*;
    
    public class Solution {
    
        public static void main(String[] args) {
            /* Enter your code here. Read input from STDIN. Print output to STDOUT. Your class should be named Solution. */
            Scanner in = new Scanner(System.in);
            int i=1;
            do{
                String s=in.nextLine();
                System.out.printf("%d %s\n",i,s);
                i++;
            }while(in.hasNext());
            
        }
    }