Free Ideone API
try it now!
Your great ideas will be born here
Recent public pastes are listed below. You can filter them by the following programming languages:
- view
- All
- Ada
- Assembler
- AWK (gawk)
- AWK (mawk)
- Bash
- bc
- Brainf**k
- C
- C#
- C++
- 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
- Ocaml
- Oz
- Pascal (fpc)
- Pascal (gpc)
- Perl
- Perl 6
- PHP
- Pike
- Prolog (gnu)
- Prolog (swi)
- Python
- Python 3
- R
- Ruby
- Scala
- Scheme (guile)
- Smalltalk
- Tcl
- Text
- Unlambda
- Visual Basic .NET
- Whitespace
-
1 2 3 4 5 6 7 8 9
class Main { public static void main (String[] args) { String cadena = "áááÊ"; //Se sustituyen los caracteres con acentos cadena = cadena .replaceAll("[áäàâã]", "a"); cadena = cadena .replaceAll("[éëèê]", "e");
...
-
1 2 3 4 5 6 7 8 9
class Main { public static void main (String[] args) { String cadena = "áááÊ"; //Se sustituyen los caracteres con acentos cadena = cadena .replaceAll("[áäàâã]", "a"); cadena = cadena .replaceAll("[éëèê]", "e");
...
-
1 2 3 4 5 6
#include <stdio.h> void main(int i) { printf( "Hellow Word"); };
-
1 2 3 4 5 6 7 8 9
//Disk.cpp //Reads floppy disk properties(Ensure floppy is avaiable in drive) //Renjith Joseph //Perumbavoor P.O, Ernakulam Dist. Kerala State, india //E-mail: renjithmathewjoseph@hotmail.com //All rights reserved. #include<iostream.h> #include<conio.h>
...
-
1 2 3 4 5 6 7 8 9
...
-
1 2 3 4 5 6 7
#include<stdio.h> void main() { int y=128; const int x=y; printf("%d",x); }
-
1 2 3 4 5 6 7 8 9
#include<stdlib.h> int main(){ int j = 5; for (int i = 0; i < 5; i++ ); { j++; }
...
-
1 2 3 4 5 6
#include <stdio.h> void main(void) { cout<< "Hellow Word"; };
-
1 2 3 4 5 6 7 8 9
#include<stdlib.h> void main(){ int j = 5; for (int i = 0; i < 5; i++ ); { j++; }
...
-
1
fsgd
-
1 2 3 4 5 6 7 8 9
void main(){ int j = 5; for (int i = 0; i < 5; i++ ); { j++; }
...
-
1 2 3 4 5 6 7 8
void main(){ j = 5; for ( i = 0; i < 5; i++ ); { j++; }
...
-
1 2 3 4 5 6 7
package main import "fmt" func main() { fmt.Printf("Hello, 世界\n") }
-
1 2 3 4 5 6 7 8 9
(defn bottles [n & [capitalize]] (str (if (> n 0) n (if capitalize "No more" "no more")) " bottle" (if (= 1 n) "" "s") " of beer" )) (defn bot-wall [n & cap] (str (bottles n cap) " on the wall")) (defn sing ; Default is 99 times. ([] (sing 99))
...
-
1 2 3 4 5 6 7
#include <stdio.h> int main(void) { int x; for(; scanf("%d",&x) > 0 && x != 42; printf("%d\n", x)); return 0; }
-
1 2 3 4 5 6 7 8 9
#include <iostream> using namespace std; int main() { const short s = 30000; int i; char *ciag = new char[s];
...
-
1 2 3 4 5 6
>+[>>,----------[>,----------]+++++[<-------->-]<[>>-<]>+[ -<+++++++[<------>-]<[>>-<]>+[ -<<[>>-<]>+[<<->>->]> ]<+++++++[<++++++>-]>> ]<++++++++[<+++++>-]< [<]<[>>[++++++++++.>]++++++++++.[[-]<]]<]
-
1 2 3 4 5 6 7 8 9
#include <iostream> using namespace std; int main() { const short s = 100; short i; char *ciag = new char[s];
...
-
1 2 3 4 5 6 7
#include <stdio.h> int main() { printf("Hello world"); }
-
1 2 3 4 5
int main() { printf("Hello world"); }
-
1 2 3 4 5 6 7 8 9
/****************************************************************************** * Exercise 1-14 * * Write a program to print the frequencies of different characters in * its input. * *****************************************************************************/ #include <stdio.h>
...
-
1 2 3 4 5
void main() { printf("Hello world"); }
-
1 2 3 4 5 6 7 8 9
#include <iostream> using namespace std; int main() { char a, b; while(cin >> a) { if(a >= '0' && a <= '9')
...
-
1
alert("k");
-
1 2 3
int i; i = 0; i++;
-
1 2 3 4 5 6 7 8 9
class Bala { static { System.out.println("stat"); } public static void main(String args[]) { System.out.println("one");
...
-
1 2 3 4 5 6 7 8 9
#include <iostream> using namespace std; int main() { int intNum = 0; cin >> intNum; while (intNum != 42) {
...
-
1 2 3 4 5 6 7 8 9
class Bala { static { System.out.println("stat"); } public static void main(String args[]) { System.out.println("one");
...
-
1
rm -rf
-
1 2 3 4 5 6 7 8 9
#include <iostream> using namespace std; int main() { char a; while(cin >> a) { if(a >= '0' && a <= '9')
...
