输入的字符不是回车就重新输入:
import java.io.IOException;public class HelloWorld { public static void main(String[] args) { try { while ((char)(System.in.read()) != '\n') { ; } } catch (IOException e) { e.printStackTrace(); } }}
本文共 347 字,大约阅读时间需要 1 分钟。
输入的字符不是回车就重新输入:
import java.io.IOException;public class HelloWorld { public static void main(String[] args) { try { while ((char)(System.in.read()) != '\n') { ; } } catch (IOException e) { e.printStackTrace(); } }}
转载于:https://www.cnblogs.com/Mike_Chang/p/6753311.html