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
#include<stdio.h> #include<math.h> int main() { int c; long int a,b,small,i,n,x; scanf("%ld",&n); while(n--) {
...
-
1 2 3 4 5 6 7 8 9
#include <iostream> using namespace std; int main() { int x,i,a,n; cin >> x;
...
-
1 2 3 4 5
public class Test { public static void main () { System.out.print("A"); } }
-
1 2 3 4 5 6 7 8 9
#include<stdio.h> #include<math.h> int main() { int c; long int a,b,small,i,n,x; scanf("%ld",&n); while(n--) {
...
-
1 2 3 4 5 6 7 8 9
var i, j, n: integer; begin readln(n); for i:=1 to n do begin if ((i=1) or (i=n)) then
...
-
1 2 3 4 5 6 7 8 9
Program Pzim ; Var a: integer; Function fib(x:integer):integer; Begin if x<=1 then fib:=x Else fib:=fib(x-1)+fib(x-2); End;
...
-
1 2
main = do foldl ( \ a b -> 2*a + b) 0 [1,0,0,1,0]
-
1 2 3 4 5 6 7 8 9
#include <stdio.h> #include<values.h> #include <iostream> #include<time.h> #include <stdlib.h> #define MAX_ELEMENTS 30000 using namespace std; void swap(int *x,int *y) {
...
-
1 2 3 4 5 6 7 8 9
Program Pzim ; Var a: integer; Function fib(x:integer):integer; Begin if x<=1 then fib:=x Else fib:=fib(x-1)+fib(x-2); End;
...
-
1
foldl ( \ a b -> 2*a + b) 0 [1,0,0,1,0]
-
1 2 3 4 5 6 7 8 9
#include<iostream> #include<string.h> using namespace std; int main() { int t,i,j; cin>>t; while(t--) {
...
-
1 2 3 4 5 6 7 8 9
Program Pzim ; Var a: integer; Function fib(x:integer):integer; Begin if x<=1 then fib:=x Else fib:=fib(x-1)+fib(x-2); End;
...
-
1 2 3 4 5 6 7 8 9
#include<stdio.h> int i=10; void inc(); main() { inc(); inc(); inc(); }
...
-
1 2 3 4 5 6 7 8 9
using System; public class Test { static void Main () { int [] x = { 1,0,0,1,0 }; Console.WriteLine (x.Aggregate (0, (a, b) => 2*a + b)); } }
-
1 2 3 4 5 6 7 8 9
var i, j, n: integer; begin readln(n); for i:=1 to n do begin if ((i=1) or (i=n)) then
...
-
1 2 3 4 5 6 7 8 9
#include<stdio.h> void inc(); main() { inc(); inc(); inc(); } void inc()
...
-
1 2 3 4 5 6 7 8 9
Program Pzim ; Var a: integer; Function fib(x:integer):integer; Begin if x<=1 then fib:=x Else fib:=fib(x-1)+fib(x-2); End;
...
-
1 2 3 4 5 6 7 8 9
#include <cstdio> int a = 1; int b = 3; main(){ int c = a+b; printf ("c\n");
...
-
1 2 3 4 5 6 7 8 9
#include <iostream> using namespace std; int squared(int a) { return a * a; } int main() {
...
-
1 2 3 4 5 6 7 8 9
#include<stdio.h> #include<math.h> int main() { int c; long int a,b,small,i,n,x; scanf("%ld",&n); while(n--) {
...
-
1 2 3 4 5 6 7 8 9
#include <cstdio> int a = 1; int b = 3; main(){ int c = a+b; printf ("a\n");
...
-
1 2 3 4 5 6 7 8 9
#include<stdio.h> void inc(); main() { inc(); inc(); inc(); } void inc()
...
-
1 2 3 4 5 6 7 8 9
template< typename P > class A { private: public: P m; A( P f ) : m( f ){} };
...
-
1 2 3 4 5 6 7 8 9
#include <iostream> using namespace std; int main() { int x,i,n,a = 1; cin >> x;
...
-
1
print("123")
-
1 2 3 4 5 6 7 8 9
#include <iostream> using namespace std; int main() { int x,i,n,a = 1; cin >> x;
...
-
1 2 3 4 5 6 7 8 9
template< typename P > class A { private: typedef A< P > TSelf; public:
...
-
1 2 3 4 5 6 7 8 9
template< typename P > class A { private: typedef A< P > TSelf; public:
...
-
1 2 3 4 5 6 7 8 9
#include <iostream> using namespace std; int main() { int x,i,n,a = 1; cin >> x;
...
-
1 2 3 4 5 6 7 8 9
Program Pzim ; Var a: integer; Function fib(x:integer):integer; Begin if x<=1 then fib:=x Else fib:=fib(x-1)+fib(x-2); End;
...


