All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.facebook.presto.hive.$internal.jodd.format.Scanf Maven / Gradle / Ivy

// Copyright (c) 2003-2014, Jodd Team (com.facebook.presto.hive.$internal.jodd.org). All Rights Reserved.

package com.facebook.presto.hive.$internal.jodd.format;

import java.io.BufferedReader;
import java.io.InputStreamReader;
import java.io.IOException;

/**
 * Scanf.
 */
public class Scanf {

	protected static BufferedReader in = new BufferedReader(new InputStreamReader(System.in));

	/**
	 * Scans input console and returns entered string.
	 */
	public static String scanf() {
		try {
			return in.readLine();
		} catch (IOException ioe) {
			return null;
		}
	}
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy