Forum: C++ Sep 23rd, 2009 |
| Replies: 1 Views: 197 So I am given a string:
x = "llo";
I have a string array with a list of words:
words{}={"hi", "bye", "lol"};
I have to compare x to each of the strings in the array to determine what x is... |
Forum: C Jul 20th, 2009 |
| Replies: 1 Views: 499 This program requires the user to input data, after which it calculates. After calculating all the users it puts it prints it onto a document and screen. After which it gets sorted by name, the data... |
Forum: C May 19th, 2009 |
| Replies: 10 Views: 950 Say I got a number, I enter it in. (like 5). Now I want to convert that to a text string that represents that number (five).
I also want it so that if I were to print a big number like 543 or... |
Forum: C Dec 14th, 2008 |
| Replies: 2 Views: 392 This is the problem, when I run it, there are no errors. However when I check the reportfile, I end up with the wrong numbers from the calculations.
The calculator:
void ... |
Forum: C++ Dec 14th, 2008 |
| Replies: 15 Views: 1,058 |
Forum: C++ Dec 14th, 2008 |
| Replies: 15 Views: 1,058 In a way, I combined the 2 different functions into one and the program works now. Still don't really understand why it can't be put into 2 different functions though. |
Forum: C++ Dec 14th, 2008 |
| Replies: 15 Views: 1,058 Can someone tell me how to fix the error or direct me to a link or thread on this forum that relates to this error?
Thanks |
Forum: C++ Dec 13th, 2008 |
| Replies: 15 Views: 1,058 one variable at a time would make code long and hard to read :X , but is hard to read as it, helps plox |
Forum: C++ Dec 13th, 2008 |
| Replies: 15 Views: 1,058 Don't know what is up with it.
Any help is nice, thanks.
error c2660: 'Totaler' : Function does not take 20 arguments
error c2660: 'Averager' : Function does not take 30 arguments
#include... |
Forum: C++ Dec 12th, 2008 |
| Replies: 5 Views: 961 ahh i see, my mistake
Thanks |
Forum: C++ Dec 12th, 2008 |
| Replies: 5 Views: 961 Alright now that thing is fixed, but I got 2 more errors now
error LNK2019: unresolved external symbol "void __cdecl CalcTaxesExt(float,float,float *,float *,float *)"... |
Forum: C++ Dec 12th, 2008 |
| Replies: 5 Views: 961 Please help, I keep getting error C2664: 'State_Tax' : Cannot convert parameter 1 from 'float *' 'to float'
#include <stdio.h>
#include <stdlib.h>
#include <string.h>
#include... |