Have you ever seen the Rose of Versailles?
I think it is natural.
I recently saw The Rose of Versailles, but I couldn't catch the end of the story, so I decided to fill the feeling of loneliness by writing a fucking code that reproduces the ending song of The Rose of Versailles.
The void created in this way is the following code.
Please google the lyrics.
java.TheRoseofVersailles
import java.util.*;
public class TheRoseofVersailles{
public static String love="love";
public static String loversName="Oscar";
public static void main(String[] args) throws Exception {
Amero();
}
public static void Amero(){
int yourHeart=0;
String love="suffering";
while(love=="suffering"){
yourHeart++;
System.out.println("Love is "+love);
if(yourHeart==10)love="love";
}
Bmero();
}
public static void Bmero(){
String you="light";
String me="shadow";
String bond=you+" and "+me;
System.out.println("you and me=="+bond);
Sabi();
}
public static void Sabi(){
for(int suffer=0;suffer<5;suffer++){
love=love+love;
System.out.println("suffer"+suffer);
System.out.println(love);
}
quote();
}
public static void quote(){
Love();
if(!(love.matches("love*")))System.out.println("love=="+love);
boolean myEyes=false;
if(myEyes==false)System.out.println("myEyes=="+myEyes);
System.out.println(loversName);
System.out.println(loversName+"!!!!!!");
}
public static void Love(){
love="can't be called love";
}
}
Execution result:
Love is suffering
Love is suffering
Love is suffering
Love is suffering
Love is suffering
Love is suffering
Love is suffering
Love is suffering
Love is suffering
Love is suffering
you and me==light and shadow
suffer0
lovelove
suffer1
lovelovelovelove
suffer2
lovelovelovelovelovelovelovelove
suffer3
lovelovelovelovelovelovelovelovelovelovelovelovelovelovelovelove
suffer4
lovelovelovelovelovelovelovelovelovelovelovelovelovelovelovelovelovelovelovelovelovelovelovelovelovelovelovelovelovelovelovelove
love==can't be called love
myEyes==false
Oscar
Oscar!!!!!!
Goodbye, my beloved Oscar
Recommended Posts