User-submitted Projects

212
5453 reads
silvercodes's picture

Submitted by

silvercodes
Tags:

206
3092 reads
ram12

using System;

class IntIndexer
{
private string[] myData;

public IntIndexer(int size)
{
myData = new string[size];


Run It Now!
204
3703 reads
atul_priyadarshi's picture

Submitted by

atul_priyadarshi
Tags:

number_to_roman
enter a year and convert it to roman
number_to_roman

Run It Now!
204
2611 reads
PhantomX's picture

Submitted by

PhantomX
Filter Example
The filter example below demonstrates how to user filters with servlets. The example allows the user to view special offers which gives random offers.
Filter Example

Run It Now!
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!
203
2684 reads
Shadowheaven's picture

Submitted by

Shadowheaven
Cookies
The cookie example below demonstrates how to use cookies with JSP and servlets. The example allows the user to download songs from the respective album .
Cookies

Run It Now!
202
3191 reads
Piyush's picture

Submitted by

Piyush
FortuneCookie
Fun app to display your fortune.
FortuneCookie

Run It Now!
202
2024 reads
adissaf's picture

Submitted by

adissaf
visitor pattern(1.01)
This example demonstrates Visitor Pattern in java.In this example Visitor Pattern Represents an operation to be performed on the elements of an object structure / Visitor lets you define a new operati

Enhancement Trail:  

visitor pattern(1.01)    visitor pattern





Run It Now!
202
3992 reads
ram15

using System;
class VarAccess
{
class AccessCls
{
public int num1 = 123;
// int num2 = 54;
}
static void Main()
{
AccessCls cls = new AccessCls();
int num1 = 98;

num1 = cls.num1;
//int


Run It Now!
200
3038 reads
ZeroesInFactorial
Program to find the number of zeroes in the factorial of a number( tried Upto 10000000000), in a fraction of a second. Got the answer for 1000000000 in 0.005 seconds.
Run It Now!
Make & share a project and showcase your talent to the world!