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
#include<iostream> #include<math.h> using namespace std; int main() { float d,a,b,c,x1,x2,D; cout<<"Enter the value of a,b,c in the eqn. ax^2+bx+c=0: "<<endl; cin>>a>>b>>c; D=((b*b)-(4.0*a*c));
...
-
1 2 3 4 5 6 7 8 9
#include <iostream> #include <cstdio> #include <cstring> #include <string.h> #include <algorithm> using namespace std; int k,dem; char s[51],p[51];
...
-
1 2 3 4 5 6 7 8
#include <cstdlib> #include <iostream> #include <algorithm> #include <vector> using namespace std; void wyswietl(int tab[26]);
...
-
1 2 3 4 5 6 7 8 9
#include <iostream> #include <cstdio> #include <cstring> #include <string.h> #include <algorithm> using namespace std; int k,dem; char s[51],p[51];
...
-
1 2 3
<? phpinfo(); ?>
-
1 2 3 4 5 6 7 8 9
#include<iostream> #include<math.h> using namespace std; int main() { float d,a,b,c,x1,x2,D,pow; cout<<"Enter the value of a,b,c in the eqn. ax^2+bx+c=0: "<<endl; cin>>a>>b>>c; D=((b*b)-(4.0*a*c));
...
-
1 2 3 4 5 6
void main(){ int i; while(1){ i++} }
-
1 2 3 4 5 6 7 8 9
#include<iostream> #include<math.h> using namespace std; int main() { float d,a,b,c,x1,x2,D,pow; cout<<"Enter the value of a,b,c in the eqn. ax^2+bx+c=0: "<<endl;
...
-
1 2 3 4
<?php $x = 'yyy' echo $x; ?>
-
1 2 3 4 5 6 7 8 9
#include<iostream> #include<conio.h> #include<math.h> using namespace std; int main() { float d,a,b,c,x1,x2,D,pow; cout<<"Enter the value of a,b,c in the eqn. ax^2+bx+c=0: "<<endl; cin>>a>>b>>c;
...
-
1 2 3 4 5 6 7 8
#include <cstdlib> #include <iostream> #include <algorithm> #include <vector> using namespace std; void wyswietl(int tab[26]);
...
-
1 2 3 4 5 6
#include <stdio.h> int main() { printf("\x0D"); return 0; }
-
1
echo 5;
-
1
printf("\x0D");
-
1 2 3 4 5 6 7 8 9
#include <stdio.h> int main() { float a=1,b=1,c=1,d=0,e=0,f=0; while((a+b+c+d+e+f)!=0) { scanf("%f%f%f%f%f%f",&a,&b,&c,&d,&e,&f); if(fabs(a)==fabs(d)) printf("R\n");
...
-
1 2 3 4 5 6 7 8 9
#include <iostream> #include <cstdio> #include <cstring> #include <string.h> #include <algorithm> using namespace std; int k,dem; char s[51],p[51];
...
-
1 2 3 4 5 6 7 8 9
#include <stdio.h> int main() { float a=1,b=1,c=1,d=0,e=0,f=0; while(a+b+c!=0) { scanf("%f%f%f%f%f%f",&a,&b,&c,&d,&e,&f); if(fabs(a)==fabs(d)) printf("R\n");
...
-
1 2
int *p = 0; *p = 1;
-
1 2 3 4 5 6 7
#include<stdio.h> #include<conio.h> void main() { int i=5; printf("%d%d%d",i,--i,++i); }
-
1 2 3 4 5 6 7 8 9
class AssignmentOperatorsDemo { public AssignmentOperatorsDemo() { // Assigning Primitive Values int j, k; j = 10; // j gets the value 10. j = 5; // j gets the value 5. Previous value is overwritten. k = j; // k gets the value 5. System.out.println("j is : " + j);
...
-
1 2 3 4 5 6 7
#include<stdio.h> #include<conio.h> void main() { int a=5; printf("%d%d%d",a,++a,--a); }
-
1 2 3 4 5 6 7 8 9
class AssignmentOperatorsDemo { public AssignmentOperatorsDemo() { // Assigning Primitive Values int j, k; j = 10; // j gets the value 10. j = 5; // j gets the value 5. Previous value is overwritten. k = j; // k gets the value 5. System.out.println("j is : " + j);
...
-
1 2 3 4 5 6 7
#include<stdio.h> int main() { int i=5; printf("%d,%d,%d",i,++i,--i); return 0; }
-
1
java.lang.System.out.println("Gaa!");
-
1 2 3 4 5 6 7 8 9
#include <stdio.h> #include <math.h> #define N 10000 int main(int argc, char **argv){ float s, d; int i; d=1.0/N/N; s=0;
...
-
1 2 3 4 5
int main() { int i=5; printf("%d,%d,%d",i,++i,--i); }
-
1
++++++++++[>+++++++>++++++++++>+++>+<<<<-]>++.>+.+++++++..+++.>++.<<+++++++++++++++.>.+++.------.--------.>+.>.
-
1 2 3 4 5
int main() { int i=5; printf("%d,%d,%d",i,++i,--i); }
-
1 2 3 4 5 6 7 8 9
//package com; class Main{ public static void main(String[] args){ Integer x = 400; Integer y = x; x++; StringBuilder sb1 = new StringBuilder("123");
...
-
1
System.out.println("java")
