[ create a new paste ] login | about

Recent Pastes:

C++, pasted 14 seconds ago:
1
2
3
4
5
void test(string str){
   stack<char> stackObject;
   stack<char> errorMessage;
  for ( unsigned int i = 0 ; i < str.length(); i++) 
  { 
...
view (47 lines, 1 line of output)
C++, pasted 27 seconds ago:
1
2
3
4
5
/* This program inserts the ints in myInts one by one into the heap, sorts the heap, and then prints the result */

#include<iostream>
#include<algorithm>
#include<vector>
...
view (27 lines, 17 lines of output)
C++, pasted 32 seconds ago:
1
2
3
4
5
#include <iostream>

void printer(int a)
{
  cout<<printer(a -1);
...
view (15 lines, 3 lines of output)
C, pasted 33 seconds ago:
1
2
3
4
5
#include <stdio.h>

void 합구하기( )
{
	//1.합구하기
...
view (20 lines, 55 lines of output)
C++, pasted 36 seconds ago:
1
2
3
4
5
bool isPythagorean(int a, int b, int c) {     
    if((a*a + b*b) == c*c && a < b && b < c) {         
        cout << a << " " << b << " " << c << endl;         
        return true;     
    } else {         
...
view (23 lines, 324 lines of output)
C++, pasted 39 seconds ago:
1
2
3
4
5
#include<iostream>
using namespace std;

int Addizione(int, int);
int Sottrazione(int, int);
...
view (45 lines, 3 lines of output)
C, pasted 40 seconds ago:
1
2
3
4
5
#include<stdio.h>
void main()
{
  unsigned int a=65000;
  while(a++!=0)
...
view (7 lines, 1 line of output)
Haskell, pasted 44 seconds ago:
1
main = do {putStrLn "Hello there..";print (3 * 33)}
view (2 lines, 2 lines of output)
C++, pasted 52 seconds ago:
1
2
3
4
5
int main ()
{
int n, q;
n = 1;
q = 82;
...
view (18 lines, 21 lines of output)
C, pasted 55 seconds ago:
1
2
3
4
5
#include<stdio.h>
void main()
{
  unsigned int a=65000;
  while(a++!=0)
...
view (7 lines, 5 lines of output)
Tcl, pasted 1 minute ago:
1
2
3
4
5
set output {
== Cluster(R)   e7.bc.02.00.00.28 Canopy, devs#=1, cntr=0, ch (1,2), updated May 26 22:11:43 2012, RMA [0]
----------------------------------------------- 
 [0] * ID   0x1 Canopy 2.4GHz: sev=45, DC=45%, RSSI[A0]=-55dBm ch(1,2) by TSIM12-1 @ May 24 06:02:27 2012
	RF sig[4]=0x01096C1E:  freq=617472KHz bw=7680KHz
...
view (155 lines, 143 lines of output)
C++, pasted 1 minute ago:
1
2
3
4
5
#include<iostream>
using namespace std;

int Addizione(int, int);
int Sottrazione(int, int);
...
view (44 lines, 2 lines of output)
C, pasted 1 minute ago:
1
2
3
4
5
#include <stdio.h>

union myUn
{
  int x;
...
view (19 lines, 2 lines of output)
C, pasted 1 minute ago:
1
2
3
4
5
#include<stdio.h>
int main(){
    int i;
    for(i=0;i<5;i++){
         int i=10;
...
view (10 lines, 1 line of output)
C, pasted 1 minute ago:
1
2
3
4
5
#include <stdio.h>

void 합구하기( )
{
//1.합구하기
...
view (20 lines, 55 lines of output)
Tcl, pasted 1 minute ago:
1
2
3
4
5
set output {
== Cluster(R)   e7.bc.02.00.00.28 Canopy, devs#=1, cntr=0, ch (1,2), updated May 26 22:11:43 2012, RMA [0]
----------------------------------------------- 
 [0] * ID   0x1 Canopy 2.4GHz: sev=45, DC=45%, RSSI[A0]=-55dBm ch(1,2) by TSIM12-1 @ May 24 06:02:27 2012
	RF sig[4]=0x01096C1E:  freq=617472KHz bw=7680KHz
...
view (153 lines, 146 lines of output)
Python, pasted 1 minute ago:
1
2
3
nome="leonarda"
aggettivo=" e' bella "
print "x" + nome [1:]
view (3 lines, 1 line of output)
C++, pasted 1 minute ago:
1
2
3
4
5
void test(string str){
   stack<char> stackObject;
   stack<char> errorMessage;
  for ( unsigned int i = 0 ; i < str.length(); i++) 
  { 
...
view (46 lines, 1 line of output)
Python, pasted 2 minutes ago:
1
2
3
nome="leonarda"
aggettivo=" e' bella "
print 'x' + nome [1:]
view (3 lines, 1 line of output)
C, pasted 2 minutes ago:
1
2
3
#include <stdio.h>
int main(int argc, char *argv[])
{
...
view (12 lines, 1 line of output)