Forum: C Aug 24th, 2008 |
| Replies: 8 Views: 1,233 I'm assuming this a programming assignment from school...If you need help with homework, you have to show some effort and tell us what you've tried. But it seems like you don't know where to start so... |
Forum: Posting Games Jun 27th, 2008 |
| Replies: 15 Views: 2,375 part
I love the fishes cause they're so _____ . |
Forum: Posting Games Jun 27th, 2008 |
| Replies: 16 Views: 18,378 Yahoo! Towers is an addicting game...It's kinda like Tetris, but more strategy is involved... |
Forum: Posting Games Jun 27th, 2008 |
| Replies: 176 Views: 13,115 |
Forum: Posting Games Jun 27th, 2008 |
| Replies: 2,356 Views: 219,809 you get an integral calculus problem...
I put in a bag of Snackwell cookies (mmm) |
Forum: Posting Games Jun 27th, 2008 |
| Replies: 51 Views: 6,398 ^ Yes, mine works fine. I hope your thermostat is working now.
< Wants to write a song with his acoustic guitar.
V Do you play the guitar? |
Forum: Posting Games Jun 27th, 2008 |
| Replies: 3,185 Views: 252,673 |
Forum: Posting Games Jun 27th, 2008 |
| Replies: 410 Views: 44,664 |
Forum: Posting Games Jun 27th, 2008 |
| Replies: 3,076 Views: 215,179 |
Forum: Posting Games Jun 27th, 2008 |
| Replies: 2,171 Views: 140,379 |
Forum: Posting Games Jun 27th, 2008 |
| Replies: 296 Views: 26,066 |
Forum: Posting Games Jun 27th, 2008 |
| Replies: 3,341 Views: 180,017 |
Forum: Posting Games Jun 27th, 2008 |
| Replies: 63 Views: 7,784 My favorite word is clandestine |
Forum: Posting Games Jun 27th, 2008 |
| Replies: 832 Views: 49,515 |
Forum: Posting Games Jun 27th, 2008 |
| Replies: 1,429 Views: 114,736 No
Are you happy that Bill Gates is retiring? |
Forum: Posting Games Jun 27th, 2008 |
| Replies: 7,595 Views: 667,206 Basic Instinct --> Sharon Stone |
Forum: Posting Games Jun 27th, 2008 |
| Replies: 981 Views: 68,042 Chicken most definitely...
American Idol or Dancing With The Stars? |
Forum: Java May 29th, 2008 |
| Replies: 1 Views: 620 Well the most important thing to remember is the importance of the Java library. There are many methods that you can use, and probably the most important is the charAt() method. The charAt() method... |
Forum: C++ May 19th, 2008 |
| Replies: 12 Views: 1,082 Which version of Dev-C++ are you using? I'm using version 4.9.9.2 and it's compiling and running perfectly. Another suggestion is to do some kind of exception handling. For instance, in the first... |
Forum: C++ May 19th, 2008 |
| Replies: 7 Views: 1,298 shanksh, why don't you use the next_permutation() function in the <algorithm> library? I'm not sure if you are allowed to use it for your assignment, but if you can, here's a very helpful link on... |
Forum: C++ May 18th, 2008 |
| Replies: 12 Views: 1,082 Hey hapiscrap:
Make the following changes:
1) Change #include <iostream.h> to #include <iostream>
2) After the #include <iostream> line and before int main(), put: using namespace std;
... |
Forum: C++ May 18th, 2008 |
| Replies: 4 Views: 1,748 alikoli, is the program always going to prompt the user for 10 inputs (and only 10 inputs) or are there a variable number of inputs (as defined by the user)? Because if the user is always expected to... |
Forum: Java May 15th, 2008 |
| Replies: 8 Views: 865 alannabrittany, what are you having problems with in particular? Have you tried attempting the problem at all? You aren't going to get much help if you don't try it and post code explaining your... |
Forum: Java May 4th, 2008 |
| Replies: 0 Views: 1,310 Hey all...I'm working on creating a text editor for one of my college projects. One of features I have to implement is a find and replace feature which requests the user to input a word to find and... |
Forum: Networking Hardware Configuration Apr 25th, 2008 |
| Replies: 1 Views: 644 On a laptop, there are normally two ways to get on the internet, wireless and using an ethernet cable. If I am connected to the internet using wireless and I plug in an ethernet cable, the wireless... |
Forum: C++ Mar 26th, 2008 |
| Replies: 8 Views: 2,526 Brittany, you can't do cin >> number[i]..That will not read a value and store it in the array...Do something like this: ...Remember to add to my reputation!
#include <iostream>
using namespace... |
Forum: C++ Mar 26th, 2008 |
| Replies: 8 Views: 2,526 Brittany, you shouldn't declare variables within a loop...Here's what you should do:
#include <iostream>
using namespace std;
int main()
{
// Declare Variables |
Forum: C++ Mar 26th, 2008 |
| Replies: 4 Views: 2,845 I'm working on a project implementing Dijkstra's Algorithm. The project involves reading from an input file and the format of the file is as follows:
- The first line of the file tells the number of... |
Forum: C++ Jul 18th, 2007 |
| Replies: 9 Views: 6,062 But the problem is though, if the user inputs a certain number of days to subtract, it would be the default day(1) - user input. So let's say the user inputs 500 days. Then the subtract_day will do 1... |
Forum: C++ Jul 18th, 2007 |
| Replies: 9 Views: 6,062 How would you subtract the days and months from the defaults date, 1/1/2000 then? |