When I try to print a triangle "/\" in Java using IntelliJ, I encounter a problem that the console is not showing what I want, instead it underlines the triangle as if it were a link. I am told that this is a problem on IntelliJ's behalf but I don't know how to print it normal without the underlined "linked" stuff.
public class HelloWorld {
public static void main(String[] args) {
System.out.println("/\\");
}
}
CodePudding user response: