Hi guys
Can please tell me what's wrong with my code? looks ok in the output, what did i miss?
thanks
package com.codegym.task.task03.task0316;
/*
Escaping characters
*/
public class Solution {
public static void main(String[] args) {
//write your code here
System.out.print("This is a Windows path: ");
System.out.print("\"C:\\Program");
System.out.println("Files\\Java\\jdk1.8.0_172\\bin\"");
System.out.print("This is a Java string: ");
System.out.print("\\\"C:\\\\Program");
System.out.print("Files\\\\Java\\\\jdk1.8.0_172\\\\bin\\\"");
}
}