[ create a new paste ] login | about

amit.munje

Name: Amit Munje
Email:
Site/Blog: http://www.vayyoo.com/
Location:
Default language: C++
Favorite languages: C++, C, QBasic
About:

Saved pastes by amit.munje:

C++, pasted on May 9:
1
2
3
4
5
#include <fstream.h>
#include <math.h>
int N = 5;
int factorial (int num)
{
...
view (106 lines, 346 lines of output)
C++, pasted on Jul 2:
1
2
3
4
5
long double C (int n, int r)
{
	long double numr = 1, denr =1;
	if (r > (n/2))
		r = n - r;
...
view (62 lines, 586 lines of output)
C++, pasted on Jul 1:
1
2
3
4
5
long double C (int n, int r)
{
	long double numr = 1, denr =1;
	if (r > (n/2))
		r = n - r;
...
view (61 lines, 586 lines of output)
C++, pasted on May 3:
1
2
3
4
5
#include<iostream.h>
void swap (int v[], int i, int j)	// function to swap array elements
{
	int t;
	t = v[i];
...
view (44 lines, 20 lines of output)
C++, pasted on May 2:
1
2
3
4
5
#include <fstream.h>
#include <math.h>
int N = 5;
int factorial (int num)
{
...
view (102 lines, 346 lines of output)
C++, pasted on May 1:
1
2
3
4
5
#include <fstream.h>
#include <math.h>
int N = 5;
int factorial (int num)
{
...
view (103 lines, 346 lines of output)
C++, pasted on Apr 30:
1
2
3
4
5
#include <fstream.h>
#include <math.h>
int N = 4;
int factorial (int num)
{
...
view (102 lines, 4 lines of output)
C++, pasted on Apr 30:
1
2
3
4
5
#include <fstream.h>
#include <math.h>
int N = 4;
int factorial (int num)
{
...
view (109 lines, 4 lines of output)
C++, pasted on Apr 30:
1
2
3
4
5
#include <fstream.h>
#include <math.h>
int N = 4;
int factorial (int num)
{
...
view (108 lines, 4 lines of output)
C++, pasted on Apr 29:
1
2
3
4
5
#include <fstream.h>
#include <math.h>
int N = 7;
int factorial (int num)
{
...
view (105 lines, 2 lines of output)
C++, pasted on Apr 29:
1
2
3
4
5
#include<fstream.h>
#include<conio.h>
int swap(int n, int option)
{
	int N=0;
...
view (120 lines, 4 lines of output)
C++, pasted on Apr 28:
1
2
3
4
5
#include<iostream.h>
int swap(int n, int option)
{
	int N=0;
	int u = n%10;
...
view (104 lines, 1 line of output)
C++, pasted on Apr 28:
1
2
3
4
5
#include<iostream.h>
int swap(int n, int option)
{
	int N=0;
	/*for:
...
view (110 lines, 1 line of output)
C++, pasted on Apr 28:
1
2
3
4
5
#include<iostream.h>
int swap(int n, int option)
{
	int N=0;
	/*for:
...
view (43 lines, 24 lines of output)
C++, pasted on Apr 28:
1
2
3
4
5
#include<iostream.h>
int swap(int n, int option)
{
	int N=0;
	/*for:
...
view (69 lines, 2 lines of output)
C++, pasted on Mar 27:
1
2
3
4
5
#include <iostream.h>
#include <iomanip.h>		//for setf and setw
#include <stdlib.h>		//for random numbers
#include <time.h>
int reqDepth, val;		//req = REQuired, val = VALue
...
view (60 lines, 15 lines of output)
C++, pasted on Mar 26:
1
2
3
4
5
#include<iostream.h>
#include<iomanip.h>
#include<stdlib.h>
#include<time.h>
int i,k;
...
view (59 lines, 9 lines of output)
C++, pasted on Mar 26:
1
2
3
4
5
#include<iostream.h>
int i=2,k;
float RSum(int ul, int j)
{
	float sum=0;
...
view (19 lines, 5 lines of output)