98.4k views
1 vote
I need to figure out exactly how to make this figure while coding.

I need to figure out exactly how to make this figure while coding.-example-1

1 Answer

4 votes

Answer:

class Main {

public static void main(String[] args) ");

System.out.println(" \\ _ /");

}

Step-by-step explanation:

Backslashes have a special meaning in string literals. You have to escape them with a backslash, hence the double backslash.

User Bridiver
by
8.1k points