我需要打开控制台,并使用Intellij输入我的作业输入.
Eclipse有一种方法可以使用Scanner类并读取System.in,但在IntelliJ中运行相同的代码不起作用,因为我无法在控制台中输入任何内容.
Eclipse有一种方法可以使用Scanner类并读取System.in,但在IntelliJ中运行相同的代码不起作用,因为我无法在控制台中输入任何内容.
有没有办法做到这一点?
我的代码如下:
public class BasicAssertions { @Test public void testAssertions(){ System.out.println("Enter: "); Scanner reader = new Scanner(System.in); int first = reader.nextInt(); int second = reader.nextInt(); String s = reader.next(); String s2 = reader.next(); assertTrue(first<=second); assertFalse(first+second >100); assertNotEquals(s,s2); assertNotNull(s2); } }