如何打印字符串" / \"在java?

时间:2015-10-23 23:12:47

标签: java

这是我的代码:

    // Throwing the dice
double r = (int) (6 * Math.random()) +1;        
  //Printing the result
  if (r==1)System.out.print(set1);
  else if (r==2)System.out.print(set2);
  else if (r==3)System.out.print(set3);  
  else if (r==4)System.out.print(set4);  
  else if (r==5)System.out.print(set5);  
  else if (r==6)System.out.print(set6);  
   do    {    } while(r != 6);  

我想打印出来,但是当我编译它时,总会出现以下错误消息:

String [][] array =   {  {"     /\     "}, 
                         {"    /  \    "},
                         {"   /    \   "}}

" / \"得到标记。
我知道,/ \是逃脱的象征,但我怎么能绕过这个呢?

为了帮助我,我将非常感激!

2 个答案:

答案 0 :(得分:3)

System.out.print("/"); //will out --> /
System.out.print("\\"); //will out --> \

答案 1 :(得分:2)

你需要逃避它,就像这样:

\\