Forum: C++ Apr 9th, 2006 |
| Replies: 8 Views: 4,695 How would I insert the '\n' break? |
Forum: C++ Apr 8th, 2006 |
| Replies: 8 Views: 4,695 Well after talking to a friend in my class, our professor wants us to cin a sentence into an dynamic array. So, if the sentence is longer than the allocated memory, it can just grabs some more. All... |
Forum: C++ Apr 8th, 2006 |
| Replies: 8 Views: 4,695 void wordcount()
{
string text = "the Dog At5674 654 Mypaper";
int count=0,i,j,k;
for(i=0; i<text.length(); i++)
{
if(isupper(text[i]))
{ |
Forum: C++ Apr 7th, 2006 |
| Replies: 8 Views: 4,695 I'm in an entry level c++ class. My professor wants us to write a function that counts the number of words in a string. The stipulation to this is, A WORD IS DEFINED TO BE ANT CONTIGUOUS GROUP OF... |
Forum: C++ Mar 25th, 2006 |
| Replies: 6 Views: 8,522 Thanks for the help. I am now able to pass the matrix, but I'm still having problems calculating the mean of each row and the mean of each column.
here is my mean function:
float mean (const... |
Forum: C++ Mar 23rd, 2006 |
| Replies: 6 Views: 8,522 So, what you are saying is i should change
float mean(const double data, int rows, int columns)
to
float mean(const double (*data)[3], int rows, int columns)
I'm still a bit confused. |
Forum: C++ Mar 22nd, 2006 |
| Replies: 6 Views: 8,522 Hello,
I am in an entry level C++ course. We have a homework problem that requires us to prompt the user to enter five sets of three numbers (type double) and store the numbers in a 5 x 3 array... |