Forum: C++ Jan 29th, 2007 |
| Replies: 7 Views: 1,271 |
Forum: C++ Jan 29th, 2007 |
| Replies: 7 Views: 1,271 Guessing game Hi there, I need to create a program that generates a random number, and asks the user to guess the number and the program tells them higher or lower, and if the program tells them higher, and they... |
Forum: C++ Dec 16th, 2006 |
| Replies: 4 Views: 1,096 Re: Sorting from file Sorry i meant (0 to 18), 19 numbers, but i fixed that, by removing the while loop
if (arnNum[x]>0 && arnNum[x]%2==0)
{
EvenCount+=1;
}
else if... |
Forum: C++ Dec 16th, 2006 |
| Replies: 4 Views: 1,096 |
Forum: C++ Dec 15th, 2006 |
| Replies: 4 Views: 1,096 Sorting from file Hello there, my question is , i read upto 20 numbers from a file, then i have to sort them into, negatives, odd's and even's, then i have to display total negatives, odd's, and even's, i also have to... |
Forum: C++ Dec 13th, 2006 |
| Replies: 2 Views: 4,484 Re: Sort in Alphabetical order YEp worked, thanks Narue (http://www.daniweb.com/techtalkforums/member17893.html), for the help,
reputaion added,
take care,
Bye |
Forum: C++ Dec 13th, 2006 |
| Replies: 2 Views: 4,484 Sort in Alphabetical order Hello there, okie, my problem today is i i have all this names,
John, Dave, Steve, Kevin,Andrew,Scott,Colin,Timothy,Zenon
and i have to sort them using insertion sort, i can sort number using... |