Monday, 13 February 2017

Scanner : NextMethod




public class NextMethod {

    public static void main(String[] args)
    {
        Scanner sc = new Scanner(System.in);
        System.out.println("Enter country name : ");        String countryName = sc.next();        System.out.println("Enter country name : "+countryName);        sc.close();
    }
}

No comments:

Post a Comment