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> int main() { int i,j,n; scanf("%d",&n); for(i=1;i<=n;i++) { for(j=0;j<(n-1-i)*2;j++) printf(" ");
...
-
1 2 3 4 5 6 7 8 9
class CalDifference{ public static void main(String k[]){ int n, sumOfSq, sqOfSums, diff; int[] num; int[] numSq; Scanner sc=new Scanner(System.in);
...
-
1 2 3 4 5 6 7 8 9
#include <iostream> #include <vector> #include <string> #include <algorithm> #include <stdio.h> using namespace std; int main() { int k=0,m[1000];
...
-
1 2 3 4 5 6 7 8 9
#include <iostream> #include <vector> #include <string> #include <algorithm> #include <stdio.h> using namespace std; int main() { int k=0,m[1000];
...
-
1 2 3 4 5 6 7 8 9
#include<stdio.h> typedef struct { int (*data)[3]; int (*method[5])(); } obj; int sum (obj *this) { return (*this->data)[0];
...
-
1 2 3 4 5 6 7 8 9
#include<stdio.h> typedef struct { int (*data)[3]; int (*method[5])(); } obj; int sum (obj *this) { return this->(*data)[0];
...
-
1 2 3 4 5 6 7 8 9
#include<stdio.h> int main() { int i,j,n; scanf("%d",&n); for(i=1;i<=n;i++) { for(j=0;j<(n-1-i)*2;j++) {
...
-
1 2 3 4 5 6 7 8 9
#include<stdio.h> typedef struct { int (*data)[3]; int (*method[5])(); } obj; int sum (obj *this) { return this->data[0] + this->data[1];
...
-
1 2 3 4 5 6 7 8 9
#include <iostream> #include <vector> #include <string> #include <algorithm> #include <stdio.h> using namespace std; int main() { int k=0,m[1000];
...
-
1 2 3 4 5 6 7 8 9
public class CalDifference{ public static void main(String k[]){ int n, sumOfSq, sqOfSums, diff; int[] num; int[] numSq; Scanner sc=new Scanner(System.in);
...
-
1 2 3 4 5 6 7 8 9
#include <iostream> #include <vector> #include <string> #include <algorithm> #include <stdio.h> using namespace std; int main() { int k=0,m[1000];
...
-
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> int main() { int i=1; int j=6; while(i<=4) { while(j>0)
...
-
1 2 3 4 5 6 7 8 9
#include <stdio.h> int main() { int t,i,count; char str[100005],str1[100000]; scanf("%d",&t); while(t--) { scanf("%s",str);
...
-
1 2 3 4 5 6 7 8 9
#include<stdio.h> int main() { int i,j,n; scanf("%d",&n); for(i=0;i<=n;i++) { for(j=0;j<(n-1-i)*2;j++) {
...
-
1 2 3 4 5 6 7 8
#include<stdio.h> int main() { int (*data)[3]; int a[3] = {1, 2, 3}; data = a;
...
-
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> int main() { int a1,a2,a3; scanf("%d%d%d",&a1,&a2,&a3); while(a1!= 0||a2!=0||a3!=0) { if((a3-a2)==(a2-a1)) { printf("AP %d\n",a3+a2-a1); } else {
...
-
1 2 3 4 5 6 7 8 9
/*Minhaz Ahmed Syrus (msyrus)*/ #include <iostream> #include <cstdio> #include <cstdlib> #include <cmath> #include <cstring> #include <string> #include <algorithm> #include <vector>
...
-
1 2 3 4 5 6 7 8 9
#include<iostream> #include<string.h> using namespace std; bool isMatching(char *str, char *reg, int n, int m, int i, int j) { cout<<"FD "<<i<<" "<<str[i]<<" "<<j<<" "<<reg[j]<<endl; if(i==n&&j==m) return true; if(i>=n||j>=m) return false; if(reg[j]<'a'||reg[j]>'z') return false;
...
-
1 2 3 4 5 6 7 8 9
#include<stdio.h> main() { int n,m,a,b,A1,A2,Z; scanf("%d%d\n%d%d",&n,&m,&a,&b); A1= n*m; A2=a*b; Z=A1/A2; printf("%d cm^2 \n",Z*A2);
...
-
1 2 3 4 5 6 7 8
#include<stdio.h> int main() { int (*data)[3]; int a[3] = {1, 2, 3}; data = a;
...
-
1 2 3 4 5 6 7 8 9
#include <iostream> #include <cmath> void power(float, float); float fact(float); using namespace std; int main() {
...
-
1 2 3 4 5 6 7 8 9
#include<stdio.h> int main() { int a1,a2,a3; scanf("%d%d%d",&a1,&a2,&a3); while(a1!= 0||a2!=0||a3!=0) { if((a3-a2)==(a2-a1)) { printf("AP %d\n",a3+a2-a1); } else {
...
-
1 2 3 4 5 6 7
class Programa { public static void main(String[] args) { String valor = "Curso da Caelum"; valor.replace('a','o'); System.out.println(valor); } }
-
1 2 3 4 5 6 7 8 9
#include<stdio.h> main() { int nm,a1,b1,a2,b2,a3,b3; scanf("%d%d%d%d%d%d%d",&a1,&b1,&a2,&b2,&a3,&b3,&nm); if (nm>=a1 && nm<=b1) { printf("Present in the first interval\n");
...
-
1 2 3 4 5 6 7 8 9
#include <iostream> #include <cmath> void power(float, float); float fact(float); using namespace std; int main() {
...
-
1 2 3 4 5 6 7 8 9
#include<stdio.h> #include "stdafx.h" #include<algorithm> using namespace std; int main() { int hen,usa,nek,cad; scanf("%d%d%d%d",&hen,&usa,&nek,&cad); int ump[500][500];
...
-
1 2 3 4 5 6 7 8 9
#include<stdio.h> int main() { int i,j,n; scanf("%d",&n); for(i=0;i<=n;i++) { for(j=0;j<(n-1-i)*2;j++) printf(" ");
...
-
1 2 3 4 5 6 7 8 9
#include<stdio.h> int main() { int i,j,n; scanf("%d",&n); for(i=0;i<=n;i++) { for(j=0;j<(n-1-i)*2;j++) printf(" ");
...


