Posts
 
Reputation
Joined
Last Seen
0 Reputation Points
Unknown Quality Score

No one has voted on any posts yet. Votes from other community members are used to determine a member's reputation amongst their peers.

0 Endorsements
~586 People Reached
Favorite Forums
Member Avatar for insanepenguin

[CODE]// Find prime numbers between 2 and 100. using System; class Prime { static void Main() { int i, j; bool isprime; for(i=2; i < 100; i++) { isprime = true; // See if the number is evenly divisible. for(j=2; j <= i/j; j++) // If i is evenly divisible, …

Member Avatar for insanepenguin
0
135
Member Avatar for insanepenguin

Hello everyone! I've just started a module on Database Design & Implementation and was wondering if someone with experience of ERD's could take a quick look for me. Here is the scenario [QUOTE]Nightingale’s Nursery Nightingale’s is a private nursery organisation which takes in children from the age of one year …

Member Avatar for BitBlt
0
451