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
~3K People Reached
Favorite Tags
Member Avatar for nedsnurb

Hi, I have there or thereabouts finished a site I am building for a university project, the site functions perfectly fine, albeit with a few layout issues. Basically I just wanted some tips on how to create a fluid layout, as the website doesn't resize itself depending on the monitor …

Member Avatar for Arkinder
0
82
Member Avatar for nedsnurb

Hi, Basically I am developing a website for a university project, all fine so far, site is set-up and I have managed to display a image gallery using lightbox. However I need to have tooltips on the images, which I cannot seem to get working. I have some code in …

Member Avatar for nedsnurb
0
106
Member Avatar for nedsnurb

I wrote this program which takes the value from the user and makes it into a even number if the number entered was odd, if not then print out a message to say they need to enter a odd number. But the program continues to return a value from the …

Member Avatar for bilalislamabad
0
210
Member Avatar for nedsnurb

hi, the following program has got to take a user inputted string and allows the user to see the postion of each character in the array i.e. T H I S I S A T E S T 0 1 2 3 4 5 6 7 8 9 10 11 …

Member Avatar for UberJoker
0
102
Member Avatar for nedsnurb

Hi, I have recently completed a bubble sort array program, which works fine. And is here : [CODE]#include <iostream> #include <ctime> using namespace std; void bubbleSort(int Array[], const int arraySize) { for(int j = 0 ; j < arraySize; j++) { for(int number = j + 1; number < arraySize; …

Member Avatar for mrnutty
0
2K
Member Avatar for nedsnurb

Hi Guys, I am writing a program which enables the user to enter a size for a square and then they can choose to output it in several ways, clear filled horizontal/verticals lines. The first two I have manged however the latter horizontal/vertical I cant quite get right, as they …

Member Avatar for VernonDozier
0
73
Member Avatar for nedsnurb

Hi, I have written a number guessing game in java, where the user can select the number of guesses and the range of random numbers. It will display higher and lower and correct however it will not calculate when the number of guesses has been exceeded and the appropriate message. …

Member Avatar for javaAddict
0
100
Member Avatar for nedsnurb

Hi, I'v written this code for an Assignment however I was wondering if anybody had any suggestions on how to change the loops from IF/ELSE statements to Do/While, if that would be possible just the rest of the guys in my class are doing it this way with IF and …

Member Avatar for ArkM
0
94
Member Avatar for nedsnurb

hi guys just a query basically I have created the following program, which takes a word then shows the position of a certain character. Now what I need to do is then print out each characters position in the array: so for example T E S T 0 1 2 …

Member Avatar for Lerner
0
81
Member Avatar for nedsnurb

Hi Have written this code for a program that requires the user to either enter 1 or 2 dependant on whether the program solves the problem of finding the divisors of any given to numbers by recursive or iteration methods. [code] #include<iostream> using namespace std; int recursiveGCD(int ,int ); int …

Member Avatar for nedsnurb
0
130
Member Avatar for nedsnurb

hi guys am a total noob with C++ and im trying to write a program that will take a user inputted integer and displays its divisors and then tell the user whether it is a perfect number or not. So far I have [code=cplusplus] #include <iostream> using namespace std; int …

Member Avatar for MosaicFuneral
0
175