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
// my first program in C++ #include <iostream> using namespace std; unsigned double c=0; int main () { for (i=0; i<4500000; i++)
...
-
1 2 3 4 5 6 7 8
// My Bar #include <iostream> using namespace std; int main() { int age; // declare variable
...
-
1 2 3 4 5 6 7 8 9
//fibonaci sequence #include <iostream> using namespace std; int main() { int ia1=0, ia2=1, iend=10; for (int i =0; i < iend+1; i++)
...
-
1 2 3 4 5 6 7 8 9
public class Problem2 { public Problem2() { } public static void main(String[] args) { system.out.println("Program")
...
-
1 2 3 4 5 6 7 8 9
#include <iostream> using namespace std; int main() { int ia1=0, ia2=1, iend; cout << "This program calculates the fibonaci sequence to the nth number." << endl << "How many do you want to display? "; cin >> iend; cout << end;
...
-
1 2 3 4 5 6 7 8
// My Bar #include <iostream> using namespace std; int main() { int age; // declare variable
...
-
1 2 3 4 5 6 7 8 9
// my first program in C++ #include <iostream> using namespace std; int main () { cout << "Hello World!"; return 0;
-
1 2 3 4 5 6 7 8 9
//Make an array, and using pointers, print it out, in reverse order. #include <iostream> using namespace std; int main(){ int array[10] = {54,24,76,98,34,73,37,97,25,69};
...
-
1 2 3 4 5 6 7 8 9
# include <iostream> using namespace std ; int main () { char choice ; cout <<"Help on :\n"; cout <<" 1.if \n " ;
...
-
1 2 3 4 5 6 7 8 9
# include <iostream> using namespace std ; int main () { char choice ; cout <<"Help on :\n"; cout <<" 1.if \n " ;
...
-
1 2 3 4 5 6 7 8 9
#include <iostream> std::string appendix(std::string number) { switch (number[number.length()-1]) { case '1': return number + "st"; break;
...
-
1 2 3 4 5 6 7 8 9
#include <iostream> std::string appendix(std::string number) { switch (number[number.length()-1]) { case '1': return number + "st"; break;
...
-
1 2 3 4 5 6 7 8 9
#include<iostream> #include<string> #include<iterator> using namespace std; int main() { string s1; string s2; string::iterator icounter1,icounter2;
...
-
1 2 3 4 5 6 7 8 9
#include <iostream> using namespace std; int main() { int ia1=0, ia2=1, iend; cout << "This program calculates the fibonaci sequence to the nth number./n How many do you want to display? "; cin >> iend; cout << end;
...
-
1 2 3 4 5 6 7 8 9
#include<iostream> void add(int*,char*,int ,int ,int ,int ,int ,int ); using namespace std; int f; int main() { int t; cin>>t; while(t--)
...
-
1 2 3 4 5 6 7 8 9
#include <iostream> using namespace std; int main() { int a = 10; int b = 2; cout << ((a++)+(++b<<2));
...
-
1 2 3 4 5 6 7 8
#include<stdio.h> int main() { int i=9876; printf("%d\n",printf("%d\n",printf("%d",i))); return0; }
-
1 2 3 4 5 6 7 8 9
#include <iostream> std::string appendix(std::string number) { switch (number[number.length()-1]) { case '1': return number + "st"; break;
...
-
1 2 3 4 5 6 7 8
// My Bar #include <iostream> using namespace std; int main() { int age; // declare variable
...
-
1 2 3 4 5 6 7 8 9
#include <iostream> std::string appendix(std::string number) { switch (number[number.length()-1]) { case '1': return number + "st"; break;
...
-
1 2 3 4 5 6 7 8 9
#include <iostream> using namespace std; int main() { int a = 1; int b = 2; cout << ((a++)+(++b<<2));
...
-
1 2 3 4 5 6 7 8 9
#include <iostream> using namespace std; int main() { int a = 0; int b = 2; cout << ((a++)+(++b<<2));
...
-
1 2 3 4 5 6 7
#include<stdio.h> void main() { int i=9876; printf("%d\n",printf("%d\n",printf("%d",i))); }
-
1 2 3 4 5 6 7 8 9
// my second word # include <iostream> using namespace std; int main() { cout <<"My first words in programming!!! Chapoltle?!?!"; return 0; }
-
1 2 3 4 5 6 7 8 9
// My Bar #include <iostream> #include <string> using namespace std; int main() { int age; // declare variable
...
-
1 2 3 4 5 6 7 8 9
#include<stdio.h> #include<iostream> #include<ctype.h> using namespace std; int loc[21][21],flag[21][21],res; void func (int x,int y,int w,int h) { //cout<<"yes\n"; if(x>=w || x<0)
...
-
1 2 3 4 5 6 7 8 9
// my second word # include <iostream> using namespace std; int main() { cout <<"My first words in programming!!!"; return 0; }
-
1 2 3 4 5 6 7 8
// my second word # include <iostream> using namespace std; int main() { cout <<"My first words in programming!;" return 0; }
-
1 2 3 4 5 6 7 8 9
import java.util.*; class Main { public static void main (String[] args) { String chart = printMap(); }
...
-
1 2 3 4 5 6 7 8 9
#include <iostream> using namespace std; int main() { int i = 10; for (i = 10; i > 0; i--) { cout<<i<<endl;
...


