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
import System.IO quicksort [] = [] quicksort (x:xs) = quicksort [y | y <- xs, y < x] ++ [x] ++ quicksort [y | y <- xs, y >= x] main = print . quicksort =<< getLine
-
1 2 3 4 5 6 7 8 9
#include <iostream> #include <iomanip> using namespace std; int main() { double number; cout << "enter a number"; cin >> number;
...
-
1 2 3
fibs = 0 : 1 : zipWith (+) fibs (tail fibs) main = print $ fibs !! 10
-
1 2 3 4 5 6 7 8 9
#include <stdio.h> int main() { int a[2][5],i,j; for(j=sizeof(a)/sizeof(a[0])-1;j>=0;j--) { for(i=sizeof(a[0])/sizeof(int)-1;i>=0;i--) {
...
-
1 2
n=int(input()) print (int(n*(n+1)/2+1))
-
1 2 3 4 5 6 7 8 9
#include <stdio.h> typedef unsigned int Uint; #define N 100 #define DP 5 //RADIX == 10^LOG #define LOG 1 #define RADIX 10 typedef Uint Liczba[N+1];
...
-
1 2 3 4 5 6 7 8 9
#include<stdio.h> #include<stdlib.h> char s2[1000]; void expand(char s1[],char s2[]) { int i=0,k=0; char j; for(i=0;s1[i]!='\0';i++)
...
-
1 2
n=int(input()) print (n*(n+1)/2+1)
-
1 2 3 4 5 6 7 8 9
#include<stdio.h> #include<stdlib.h> int a,b,c,d,total=0,dra=0,tmp=0,i; int main () { scanf("%d%d%d%d%d",&a,&b,&c,&d,&total); dra+=total/a; dra+=total/b; dra+=total/c;
...
-
1 2 3 4 5 6 7 8 9
#include <iostream> using namespace std; int main() { while (1) {cout<<"Люблю тебя моя прелесть!<3"<<endl;} return 0; }
-
1 2 3 4 5 6 7 8 9
class supcon { private int x,y; supcon(supcon obj) { x=obj.x; y=obj.y; } supcon(int a,int b)
...
-
1 2 3 4 5 6 7 8 9
#include <stdio.h> typedef unsigned int Uint; #define N 100 #define DP 1 //RADIX == 10^LOG #define LOG 1 #define RADIX 10 typedef Uint Liczba[N+1];
...
-
1 2
n=int(input()) print (n*(n+1)/2+1)
-
1 2 3 4 5 6 7 8 9
#include <stdio.h> typedef unsigned int Uint; #define N 100 #define DP 1 //RADIX == 10^LOG #define LOG 1 #define RADIX 10 typedef Uint Liczba[N+1];
...
-
1 2 3 4 5 6 7 8 9
#include <iostream> using namespace std; int main() { while (1) {cout<<"Люблю тебя моя прелесть!<3\n";} return 0; }
-
1 2 3 4 5
try { System.out.println("Wynik = " + 2/0); } catch(ArithmeticException e) {} catch(Exception a) {}
-
1 2 3 4 5 6 7 8 9
#include<stdio.h> #include<stdlib.h> int a,b,c,d,total=0,dra=0,tmp=0,i; int main () { scanf("%d%d%d%d%d",&a,&b,&c,&d,&total); dra+=total/a; dra+=total/b; dra+=total/c;
...
-
1 2 3 4 5 6 7 8 9
#include <stdio.h> typedef unsigned int Uint; #define N 100 #define DP 1 //RADIX == 10^LOG #define LOG 1 #define RADIX 10 typedef Uint Liczba[N+1];
...
-
1 2 3 4 5 6 7 8 9
#include <stdio.h> typedef unsigned int Uint; #define N 100 #define DP 1 //RADIX == 10^LOG #define LOG 1 #define RADIX 10 typedef Uint Liczba[N+1];
...
-
1 2 3 4 5 6 7 8 9
#include <iostream> using namespace std; int main() { while (1) {cout<<"Люблю тебя моя прелесть";} return 0; }
-
1 2 3 4 5 6 7 8
#include <iostream> #include <stdio.h> #include <stdlib.h> #include <ctype.h> #include <math.h> #include <cmath> #include <vector> #include <set>
...
-
1 2 3 4 5 6 7 8 9
#include <iostream> using namespace std; int main() { While (1) {cout<<"Люблю тебя моя прелесть";} return 0; }
-
1 2 3 4 5 6 7 8 9
#include <iostream> #include <Windows.h> void main() { std::cout<<"Czy wykonac rzut?\n" <<"Podaj liczbę oczek."; int oczka; std::cin>oczka;
...
-
1 2 3 4 5 6 7 8 9
<html> <head> <title>Beat-That!</title> <style type = "text/css"> table { width: 15em } th { text-align: left } </style> <script type = "text/javascript">...
-
1 2 3 4 5 6 7 8
#include <stdio.h> #define PI 3.14 /* define the value of PI as a constant */ float square (float number) { float square_value;
...
-
1 2 3 4 5 6 7 8 9
#include <iostream> #include <Windows.h> void main() { std::cout<<"Czy wykonac rzut?\n" <<"Podaj liczbę oczek."; int oczka; std::cin>oczka;
...
-
1 2 3 4 5 6 7 8
import java.util.Scanner; class Echo { public static void main (String[] args) { String inData;
...
-
1 2 3 4 5 6 7 8 9
#include <stdio.h> int main() { int a[2][5],i,j; for(i=sizeof(a[0])/sizeof(int)-1;i>=0;i--) { for(j=sizeof(a)/sizeof(a[ 0])-1;j>=0;j--) {
...
-
1 2 3 4 5 6 7
program participants; var person: Array[1..100,1..100,1..100] of String; begin end.
-
1 2 3 4 5 6 7 8 9
#include <cctype> #include <cstdio> #include <vector> #include <string> #include <iostream> using namespace std ; int main() {
...


