Recent public codes are listed below. You can filter them by the following programming languages:
- view
- All
- Ada
- Assembler
- Assembler
- AWK (gawk)
- AWK (mawk)
- Bash
- bc
- Brainf**k
- C
- C#
- C++
- C++0x
- C99 strict
- CLIPS
- Clojure
- COBOL
- COBOL 85
- Common Lisp (clisp)
- D (dmd)
- Erlang
- F#
- Factor
- Falcon
- Forth
- Fortran
- Go
- Groovy
- Haskell
- Icon
- Intercal
- Java
- JavaScript (rhino)
- JavaScript (spidermonkey)
- Lua
- Nemerle
- Nice
- Nimrod
- Objective-C
- Ocaml
- Oz
- Pascal (fpc)
- Pascal (gpc)
- Perl
- Perl 6
- PHP
- Pike
- Prolog (gnu)
- Prolog (swi)
- Python
- Python 3
- R
- Ruby
- Scala
- Scheme (guile)
- Smalltalk
- SQL
- Tcl
- Text
- Unlambda
- VB.NET
- Whitespace
-
1 2 3 4 5 6 7 8 9
def flip(v): nv = 0 while (v > 0) nv = nv * 10 nv = nv + v % 10 v = v / 10 return nv res = 0;
...
-
1 2 3 4
a = 20 b = 30 a = a + b print a
-
1 2 3 4 5 6 7 8 9
# http://en.wikipedia.org/wiki/Pell%27s_equation # http://en.wikipedia.org/wiki/Continued_fraction#Best_rational_approximations from fractions import * from math import * def PellsEquation(convergent, n): return (convergent.numerator**2) - n*(convergent.denominator**2)
...
-
1 2 3 4 5 6 7 8 9
# http://en.wikipedia.org/wiki/Pell%27s_equation # http://en.wikipedia.org/wiki/Continued_fraction#Best_rational_approximations from fractions import * from math import * def PellsEquation(convergent, n): return (convergent.numerator**2) - n*(convergent.denominator**2)
...
-
1 2 3 4 5 6 7 8 9
# http://en.wikipedia.org/wiki/Pell%27s_equation # http://en.wikipedia.org/wiki/Continued_fraction#Best_rational_approximations from fractions import * from math import * def PellsEquation(convergent, n): return (convergent.numerator**2) - n*(convergent.denominator**2)
...
-
1 2 3 4 5 6 7 8 9
# http://en.wikipedia.org/wiki/Pell%27s_equation http://en.wikipedia.org/wiki/Continued_fraction#Best_rational_approximations from fractions import * from math import * def PellsEquation(convergent, n): return (convergent.numerator**2) - n*(convergent.denominator**2)
...
-
1
3
-
1 2 3 4 5 6 7 8 9
get inputoutput get characterarray get standardinputoutput get charactertype get mathalgorithms get console start() { alpha c[20]
...
-
1 2 3 4 5 6 7 8 9
get inputoutput get characterarray get standardinputoutput get charactertype get mathalgorithms get console start() { alpha c[20]
...
-
1 2 3 4 5 6 7 8 9
get inputoutput get characterarray get standardinputoutput get charactertype get mathalgorithms get console start() { alpha c[20]
...
-
1 2 3 4 5 6
Name = raw_input() CW = raw_input() CType = raw_input() if CW == 'Sclean': print CW
-
1 2 3 4 5 6
Name = raw_input() CW = raw_input() CType = raw_input() if CW == 'Sclean': print 'rawr'
-
1 2 3 4 5 6 7
Name = raw_input() CW = raw_input() CType = raw_input() if CW == 'Sclean': print 'rawr' end
-
1 2 3 4 5 6 7
Name = raw_input() CW = raw_input() CType = raw_input() if CW == 'Sclean': print 'rawr' endif
-
1 2 3 4 5 6 7
Name = raw_input() CW = raw_input() CType = raw_input() if CW == 'Sclean': print(CW) endif
-
1 2 3 4 5 6 7
Name = raw_input() CW = raw_input() CType = raw_input() if CW == 'Sclean': print CW endif
-
1 2 3 4 5 6 7
$Name = raw_input() $CW = raw_input() $CType = raw_input() if $CW == 'Sclean': print $Name endif
-
1 2 3 4 5 6 7
Name = raw_input() CW = raw_input() CType = raw_input() if CW == 'Sclean': print Name endif
-
1 2 3 4 5 6 7
Name = raw_input() CW = raw_input() CType = raw_input() if CW == 'Sclean': print n endif
-
1 2 3 4 5 6 7
Name = raw_input() CW = raw_input() CType = raw_input() IF CW == 'Sclean': print n ENDIF
-
1 2 3 4 5 6 7
Name = raw_input() CW = raw_input() CType = raw_input() IF CW == 'Sclean' print n ENDIF
-
1 2 3 4 5 6 7
Name = raw_input() CW = raw_input() CType = raw_input() if CW == "Sclean" print n ENDIF
-
1 2 3 4 5 6 7 8
while True: a = input('Introduzca la contrasena:') if (a) == '1' : print('bien hecho!') break else: print('muy maal') input()
-
1 2 3 4 5 6 7 8
while True: a = input('Introduzca la contrasena:') if (a) == '1' : print('bien hecho!') break else: print('muy maal') input()
-
1 2 3 4 5 6 7 8
while True: a = input('Introduzca la contraseña:') if (a) == '1' : print('bien hecho!') break else: print('muy maal') input()
-
1 2 3
import socket s= socket.socket() s.connect(('www.google.com',80))
-
1 2
import socket s= socket.socket()
-
1 2 3
import tkinter ven = tkinter.tk() ven.mainloop()
-
1 2 3 4 5 6 7 8 9
def ask_ok(prompt, retries=4, complaint='Yes or no, please!'): while True: ok = input(prompt) if ok in ('y', 'ye', 'yes'): return True if ok in ('n', 'no', 'nop', 'nope'): return False retries = retries - 1 if retries < 0:
...
-
1 2 3 4 5 6 7 8 9
def ask_ok(prompt, retries=4, complaint='Yes or no, please!'): while True: ok = input(prompt) if ok in ('y', 'ye', 'yes'): return True if ok in ('n', 'no', 'nop', 'nope'): return False retries = retries - 1 if retries < 0:
...


