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
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() {
...
-
1 2 3 4 5 6 7 8
import java.util.Scanner; class Echo { public static void main (String[] args) { String inData; Scanner scan = new Scanner( System.in );
...
-
1 2 3 4 5 6 7 8
import java.util.Scanner; class Echo { public static void main (String[] args) { String inData; Scanner scan = new Scanner( System.in );
...
-
1 2 3 4 5 6 7 8
/* EX3_3.C ======= Suggested solution to Exercise 3-3 */
...
-
1 2 3 4 5 6 7 8 9
#include <iostream> #include <string> using namespace std; void goku(string query) { unsigned int flag = 1; for (unsigned int i = 0; i < query.size(); i++) { if (flag && isalpha(query[i])) { flag = 0; cout << query[i];
...
-
1 2 3 4 5 6 7 8 9
import java.io.*; public class Main { public static void main (String[]args)throws Exception{ BufferedReader read = new BufferedReader(new InputStreamReader(System.in)); int cases = Integer.parseInt(read.readLine()),i=0; int sum=0,a,b,positionA=0,positionB=0,g=0,c=1,couples; String[] []A= new String [1][]; String[] []B= new String [1][];
...
-
1 2 3
program participants; var person: Array[1..100,1..100,1..100] of String;
-
1 2 3 4 5 6 7 8 9
#include <cctype> #include <cstdio> #include <vector> #include <string> #include <iostream> using namespace std ; int main() {
...
-
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
program participants; var person: Array[1..100,1..100,1..100] of String;
-
1 2 3 4 5 6 7 8 9
import java.io.*; public class Main { public static void main (String[]args)throws Exception{ BufferedReader read = new BufferedReader(new InputStreamReader(System.in)); int cases = Integer.parseInt(read.readLine()),i=0; int sum=0,a,b,positionA=0,positionB=0,g=0,c=1,couples; String[] []A= new String [1][]; String[] []B= new String [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
#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 <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 8 9
#include <iostream> #include <cmath> float power(float, float); float fact(float); using namespace std; int main() {
...
-
1 2 3 4 5 6 7 8 9
#include <cctype> #include <cstdio> #include <vector> #include <string> #include <iostream> using namespace std ; int main () { int t , len ;
...
-
1 2 3 4 5 6 7
import java.util.*; class Main { public static void main(String[] args) { System.out.println("Hello, World!"); } }
-
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> #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); printf("%d %d %d %d %d\n",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 <cctype> #include <cstdio> #include <vector> #include <string> #include <iostream> using namespace std ; int main () { int t , len ;
...
-
1 2 3 4 5 6 7 8 9
#include <iostream> #include <cmath> float power(float, float); float fact(float); using namespace std; int main() {
...
-
1 2 3 4 5 6 7 8 9
#include <cctype> #include <cstdio> #include <vector> #include <string> #include <iostream> using namespace std ; int main () { int t , len ;
...
-
1 2 3 4 5 6 7 8 9
#ifndef BOOST_ASIO_IP_RAWTCP_HPP #define BOOST_ASIO_IP_RAWTCP_HPP #if defined(_MSC_VER) && (_MSC_VER >= 1200) # pragma once #endif // defined(_MSC_VER) && (_MSC_VER >= 1200) #include <boost/asio/detail/config.hpp> #include <boost/asio/detail/socket_types.hpp>
...
-
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> #include <cmath> float power(float, float); float fact(float); using namespace std; int main() {
...
-
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];
...


