User-submitted Projects

203
3453 reads
ram8

using System;

using System.Threading;

class MyThread {

public int count;

string thrdName;

public MyThread(string name) {

count = 0;

thrdName = name;


Run It Now!
178
2535 reads
ram7

using System;
public class ManyMethods
{
public static void Main()
{
//Get the values
double value1 = GetNumber();
double value2 = GetNumber();

//Do division
Division(value1,


Run It Now!
110
2545 reads
ram4

#include

class Animal
{
public:
Animal():itsAge(1) { std::cout << "Animal constructor...\n"; }
virtual ~Animal() { std::cout << "Animal destructor...\n"; }
Animal


Run It Now!
113
2549 reads
ram3

DiamondOfNumbers


Run It Now!
121
2895 reads
Ram2

#include
using namespace std;
#include
#include

int main()
{
float a,b,c,d,e,f,g,h,i,j,n,sum,sub,mul,div;
cout<<"enter a value for a = ";
cin>>a;
cout<<"enter a


Run It Now!
122
2852 reads
Ram1

// Tic-Tac-Toe
// Plays the game of tic-tac-toe against a human opponent
#include
#include
#include
#include
using namespace std;
// global constants
c


Run It Now!
177
2195 reads
ram 1
// Quite a "cheaty" way to display Pi up to a certain nymber of decimal palces (up to 14).
Run It Now!
52
2585 reads
34
199 reads
CrazyCoder's picture

Submitted by

CrazyCoder
Tags:

132
1827 reads
test
a simple number sequence test program
test

Run It Now!