quine
Quine Confusion.What actually does quine prints?
Does a quine开发者_JS百科 print the ACTUAL code of the program i.e not obfuscated or does it print the obfuscated program?I don\'t think obfuscation has anything to do with it. Usually a quine prints[详细]
2023-01-15 09:11 分类:问答Is this a valid quine?
def start(fileName): 开发者_开发问答 fileReader = open(fileName) for row in fileReader: print row,[详细]
2023-01-03 18:48 分类:问答Is it possible to write a Java printf statement that prints the statement itself?
Is it possible to have a Java printf statement, whose output is the statement itself? Some snippet to illustrate:[详细]
2023-01-01 03:53 分类:问答is it possible to write a program which prints its own source code utilizing a "sequence-generating-function"
is it possible to write a program which prints its own source code utilizing a \"sequence-generating-function\"?[详细]
2022-12-30 08:01 分类:问答Programs that reproduces itself
Is it possible to make a Java program that prints its source code to a new file, and compiles开发者_StackOverflow it, and runs the compiled program?Update:[详细]
2022-12-26 16:53 分类:问答How could a quine in my programming language look?
I have created a turing-complete programming language (already proven) so it must be possible to write a quine for it, right?[详细]
2022-12-26 04:38 分类:问答Is it possible to create a quine in every turing-complete language?
I just wanted to know if it is 100% possible, if my language is turing-complete, to write a program in it that prints itself out (of course not using a file reading function)[详细]
2022-12-25 17:47 分类:问答Shortest Ruby Quine [closed]
As it currently stands, this question is not a good fit for our Q&A format. We expect answers to be supported by facts, references,or expertise, but this question will likely solicit debate, a[详细]
2022-12-23 16:33 分类:问答C++ Template Quine
It is开发者_如何学Go known that C++ templates are turing complete.As such it should be possible to output a quine that is essentially rendered at compile time.Does anyone know if such a quine has been[详细]
2022-12-20 10:24 分类:问答C# Quine Problem
I am trying to understand how this piece of self-replicating code works (found here), but the problem is I can\'t get it to run as-is:[详细]
2022-12-12 12:20 分类:问答