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
- Java7
- 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
/* read the numbers; notice: ech line of the input must be followed by an EOF character */ x = read(); /* multiplication table */ for (i=1; i<=x; ++i) { for (j=1; j<=x; ++j) print i*j, "\t" print "\n" }
...
-
1 2 3 4 5 6 7 8 9
/* read the numbers; notice: ech line of the input must be followed by an EOF character */ x = read(); /* multiplication table */ for (i=1; i<=x; ++i) { for (j=1; j<=x; ++j) print i*j, "\t" print "\n" }
...
-
1
2+3
-
1 2 3
echo 'read name' read name echo name
-
1 2 3 4 5 6 7 8
#include<iostream.h> #include<conio.h> void main() { cout<<"ne podi korange"; getch(); }
-
1 2 3 4 5 6 7
main() { cout<<"ne podi korange"; getch(); }
-
1 2 3 4 5 6 7 8 9
#include <cstdio> #include <iostream> #include <stack> #include <cstring> using namespace std; int main() { int il;
...
-
1 2 3 4 5 6 7 8 9
/* read the numbers; notice: ech line of the input must be followed by an EOF character */ x = read(); /* multiplication table */ for (i=1; i<=x; ++i) { for (j=1; j<=x; ++j) print i*j, "\t" print "\n" }
...
-
1
2^1024
-
1 2 3 4 5 6 7 8 9
import java.io.BufferedReader; import java.io.IOException; import java.io.InputStreamReader; /** * * @author Vasanth Raja Chittampally */
...
-
1 2 3 4
main() { getch(); }
-
1 2 3 4 5 6 7 8 9
1 f8 b08 0814 cbc14 c00032 3000b0e 71747735 b452f0533
...
-
1 2 3 4 5 6 7 8 9
xb1lIHRvIG5lYnlsbyB0xJvFvmvDqT8gSmVuIHBybyDDunBsbm9zdCBwcm8gbm9ybcOhbG7DrSAo dGVkeSBuZXBvxI3DrXRhxI1vdsO9KSAgbGlkIC0gcHJvxI0gUG/FoXRvdm7DrT8gIEvDs2QgQmFz ZTY0LCBrdGVyw71tIGplIHRlbmhsZSB0ZXh0IHpha8OzZG92w6FuLCBwb3XFvsOtdsOhdGUgbWou ICAoYW5pxb4gdG8gdMWZZWJhIHbDrXRlKSB2ZSB2xaFlY2ggdmHFoWljaCBlbWFpbG92w71jaCB6 cHLDoXbDoWNoIGsgdG9tdSwgYWJ5IHNlIGsgdsOhbSBuZWJvIG9kIHbDoXMgZG9ixZllIHDFmWVu ZXNseSB2xaFlY2hueSBWYcWhZSBmb3RreSwgdmlkZWEsIHRleHR5IHMgxI1lc2tvdSBkaWFrcml0 aWtvdSBhIGppbsOpIHZ5Y2h5dMOhdmt5IChvYmVjbsOhIGJpbsOhcm7DrSBkYXRhIHNlIGvDs2R1 asOtIHBvIDYgYml0ZWNoIGRvIHRpc2tudXRlbG7DvWNoIDY0IHpuYWvFrywga3RlcsOpIGpzb3Ug cMWZZW5vc2l0ZWxuw6EgcG/FoXRvdm7DrW0gIE1JTUUgcHJvdG9rb2xlbSkuIFRha8W+ZSAgdGFr
...
-
1 2 3 4 5 6 7 8 9
/* read the numbers; notice: ech line of the input must be followed by an EOF character */ x = read(); /* multiplication table */ for (i=1; i<=x; ++i) { for (j=1; j<=x; ++j) print i*j, "\t" print "\n" }
...
-
1 2 3 4 5 6 7 8 9
/* read the numbers; notice: ech line of the input must be followed by an EOF character */ x = read(); /* multiplication table */ for (i=1; i<=x; ++i) { for (j=1; j<=x; ++j) print i*j, "\t" print "\n" }
...
-
1 2 3 4 5 6 7 8 9
using System; public class Test { public static void Main() { int n; while ((n = int.Parse(Console.ReadLine()))!=42) Console.WriteLine(n); }
-
1
-
1
1+2
-
1 2 3 4 5 6 7
j=m=0;l=999; for(i=k=1;i<l;i++){ m=j+k;j=k;k=m; /*i;j;*/ } k;
-
1 2 3
scale=50 2^140
-
1 2 3 4
/* compute the pi number accurately to 10 decimal places */ scale=2000 print "\npi = ", 4*a(1), "\n"
-
1 2 3 4
/* compute the pi number accurately to 10 decimal places */ scale=3000 print "\npi = ", 4*a(1), "\n"
-
1 2 3 4
/* compute the pi number accurately to 10 decimal places */ scale=4000 print "\npi = ", 4*a(1), "\n"
-
1 2 3 4
/* compute the pi number accurately to 10 decimal places */ scale=5000 print "\npi = ", 4*a(1), "\n"
-
1 2 3 4
/* compute the pi number accurately to 10 decimal places */ scale=1000 print "\npi = ", 4*a(1), "\n"
-
1 2 3 4
/* compute the pi number accurately to 10 decimal places */ scale=10000 print "\npi = ", 4*a(1), "\n"
-
1 2 3 4
/* compute the pi number accurately to 10 decimal places */ scale=100 print "\npi = ", 4*a(1), "\n"
-
1
10 print "hi"
-
1 2 3 4 5 6 7 8 9
/* read the numbers; notice: ech line of the input must be followed by an EOF character */ x = read(); /* multiplication table */ for (i=1; i<=x; ++i) { for (j=1; j<=x; ++j) print i*j, "\t" print "\n" }
...
-
1 2 3
+++++ +++++ [>++++++<] >+++++.


