Write a complete Java program that prints the following output:
//////////////////////
|| Victory is mine! ||
\\\\\\\\\\\\\\\\\\\\\\
Program:
public class One
{
public static void main(String []args) {
System.out.println("//////////////////////\n"
+ "|| Victory is mine! ||\n"
+ "\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\");
}
}
RESULT OUTPUT:
//////////////////////
|| Victory is mine! ||
\\\\\\\\\\\\\\\\\\\\\\