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
#include <stdio.h> main() int { println("teste"); system("pause"); return 0; }
-
1 2 3 4 5 6 7 8 9
global _start section .data buffer dw 0h section .text _start: mov ecx, buffer
...
-
1 2 3 4 5 6 7 8 9
MiPrimeraClase1 clase { / ** * @ param args * / Sumar public int (int a , int b ) { int c ; c = a + b;
...
-
1 2 3 4 5 6 7
#include <stdio.h> main() { println("teste"); system("pause"); return 0; }
-
1 2 3 4 5 6 7
#include <stdio.h> main() { println("teste"); system("pause"); return 0; }
-
1 2 3 4 5 6 7 8 9
import java.util.scanner; public class QuadraticEquation{ public static void main(String[]args){ Scanner input=new Scanner(System.in); System.out.println("This Will Solve the Quadratic Equation: ax^2 + bx + c = 0"); int a, b, c, root1, root2, discriminant; System.out.println("Enter values for a, b, and c:"); System.out.println("a= "); int a = input.nextInt();
...
-
1 2 3 4 5 6 7 8 9
import java.util.scanner; public class QuadraticEquation{ public static void main(String[]args){ Scanner input=new Scanner(System.in); System.out.println("This Will Solve the Quadratic Equation: ax^2 + bx + c = 0"); int a, b, c, root1, root2, discriminant; System.out.println("Enter values for a, b, and c:"); System.out.println("a= "); int a = input.nextInt();
...
-
1 2 3 4 5 6 7 8 9
#include <string> #include <algorithm> #include <vector> #include <iostream> using namespace std; bool is_rotation(const string& str1, const string& str2) { if(str1.size()!=str2.size())
...
-
1 2 3 4 5 6 7 8 9
import java.util.scanner; public class QuadraticEquation{ public static void main(String[]args){ Scanner input=new Scanner(System.in); System.out.println("This Will Solve the Quadratic Equation: ax^2 + bx + c = 0"); int a, b, c, root1, root2, discriminant; System.out.println("Enter values for a, b, and c:"); System.out.println("a= "); int a = input.nextInt();
...
-
1 2 3 4 5 6 7 8 9
import java.util.scanner; public class QuadraticEquation{ public static void main(String[]args){ Scanner input=new Scanner(System.in); System.out.println("This Will Solve the Quadratic Equation: ax^2 + bx + c = 0"); int a, b, c, root1, root2, discriminant; System.out.println("Enter values for a, b, and c:"); System.out.println("a= "); int a = input.nextInt();
...
-
1 2 3 4 5 6 7 8 9
import java.util.scanner; public class QuadraticEquation{ public static void main(String[]args){ Scanner input=new Scanner(System.in); System.out.println("This Will Solve the Quadratic Equation: ax^2 + bx + c = 0"); int a, b, c, root1, root2, discriminant; System.out.println("Enter values for a, b, and c:"); System.out.println("a= "); int a = input.nextInt();
...
-
1 2 3 4 5 6 7 8 9
#include <iostream> using namespace std; void Sort012(int* array, int size) { if (!array || size<=0) return; int scan, left, right, tmp;
...
-
1 2 3 4 5 6 7 8 9
#include <iostream> using namespace std; void Sort012(int* array, int size) { if (!array || size<=0) return; int scan, left, right, tmp;
...
-
1 2 3 4 5 6 7 8 9
import java.util.scanner; public class QuadraticEquation public static void main(String[]args){ Scanner input=new Scanner(System.in); System.out.println("This Will Solve the Quadratic Equation: ax^2 + bx + c = 0"); int a, b, c, root1, root2, discriminant; System.out.println("Enter values for a, b, and c:"); System.out.println("a= "); int a = input.nextInt();
...
-
1 2 3 4 5 6 7 8 9
#include<algorithm> using namespace std; #define N_MAX 1000002 int n,k,i; int a[N_MAX]; const int P=50001; int poz=50000; char parse[50001];
...
-
1 2 3 4 5 6 7 8 9
import java.util.scanner; public class QuadraticEquation public static void main(String[]args){ Scanner input=new Scanner(System.in); System.out.println("This Will Solve the Quadratic Equation: ax^2 + bx + c = 0"); int a, b, c, root1, root2, discriminant; System.out.println("Enter values for a, b, and c:"); System.out.println("a= "); int a = input.nextInt();
...
-
1 2 3 4 5 6 7 8 9
#include <iostream> using namespace std; void Sort012(int* array, int size) { if (!array || size<=0) return; int scan, left, right;
...
-
1 2 3 4 5 6 7 8 9
#include <iostream> using namespace std; void Sort012(int* array, int size) { if (!array || size<=0) return; int scan, left, right;
...
-
1 2 3 4 5 6 7 8 9
import java.util.*; import java.lang.*; class Main { public static void main (String[] args) throws java.lang.Exception { System.out.println(longestPalindrome("abcellejiklr")); System.out.println(isPalindrome("elle"));
...
-
1 2 3 4 5 6 7 8 9
import java.util.*; import java.lang.*; class Main { public static void main (String[] args) throws java.lang.Exception { System.out.println(longestPalindrome("abcellejiklr"); System.out.println(isPalindrome("elle"));
...
-
1 2 3 4 5 6 7 8 9
import java.util.*; import java.lang.*; class Main { public static void main (String[] args) throws java.lang.Exception { System.out.println(isPalindrome("elle")); }
...
-
1 2 3 4 5 6 7 8
while(<>) { if($_=~/([0-9a-fA-F]{8}\-([0-9a-fA-F]{4}\-){3}[0-9a-fA-F]{12})|({[0-9a-fA-F]{8}\-([0-9a-fA-F]{4}\-){3}[0-9a-fA-F]{12}})/) { print $_; } }
-
1 2 3 4 5 6 7 8 9
import java.util.*; import java.lang.*; class Main { public static void main (String[] args) throws java.lang.Exception { System.out.println(isPalindrome("elle")); }
...
-
1 2 3 4 5 6 7 8
while(<>) { if($_=~/([0-9a-fA-F]{8}\-([0-9a-fA-F]{4}\-){3}[0-9a-fA-F]{12})/) { print $_; } }
-
1 2 3 4 5 6 7 8 9
import java.util.*; import java.lang.*; class Main { public static void main (String[] args) throws java.lang.Exception { System.out.println(isPalindrome("elle")); }
...
-
1 2 3 4 5 6 7 8 9
#include <iostream> using namespace std; void Sort012(int* array, int size) { if (!array || size<=0) return; int scan, left, right;
...
-
1 2 3 4 5 6 7 8 9
import java.util.*; import java.lang.*; class Main { public static void main (String[] args) throws java.lang.Exception { System.out.println(isPalindrome("elle")); }
...
-
1 2 3 4 5 6 7 8 9
#include <iostream> using namespace std; void main() { unsigned int Miles; const double LessThan100 = 0.25; const double MoreThan100 = 0.15; double PriceLessThan100, PriceMoreThan100, TotalPrice;
...
-
1 2 3 4 5 6 7 8 9
import java.util.*; import java.lang.*; class Main { public static void main (String[] args) throws java.lang.Exception { System.out.println(isPalindrome("elle")); }
...
-
1 2 3 4 5 6 7 8 9
import java.util.*; import java.lang.*; class Main { public static void main (String[] args) throws java.lang.Exception { System.out.println(isPalindrome("elle")); }
...
