vote up 0 vote down star
1

How many ways are there to let the code output itself?

For example, write the code below,

public class Test
{
   public static void main(String[] args)
   {
      // some code
   }
}

to output itself

public class Test
{
   public static void main(String[] args)
   {
      // some code
   }
}

(Any programming language is accepted)

EDIT This question has been answered in the historical posts, search "quine" or check out http://stackoverflow.com/search?q=quine

flag
Turning this into a community wiki would surely attract more volunteers. – David Hanak Feb 23 at 18:11
Exact duplicate of many, many quine questions on SO: stackoverflow.com/search?q=quine – Adam Davis Feb 23 at 18:14
Oh it is duplicated, sorry. – codemeit Feb 23 at 18:15
No problem. Don't worry about deleting it - it will help others when they try to post the same question by showing up as a suggestion when they enter a new question title. – Adam Davis Feb 23 at 18:16

closed as exact duplicate by Adam Davis, codemeit, Brian, David, Ferruccio Feb 23 at 19:33

7 Answers

vote up 4 vote down

look up Quines.

link|flag
vote up 1 vote down

You are wanting to read about quines. See here.

link|flag
vote up 1 vote down

http://en.wikipedia.org/wiki/Quine_(computing)

link|flag
vote up 0 vote down

Hasn't this question already been asked?

link|flag
vote up 0 vote down

There are an infinite number ways to do this. All you have to do is find one way and then add comments....

link|flag

Not the answer you're looking for? Browse other questions tagged or ask your own question.