Forum: C++ Mar 3rd, 2003 |
| Replies: 19 Views: 5,426 well bob its a required course so if i make it through you'll never hear from me again until then i need some help and answers |
Forum: C++ Mar 3rd, 2003 |
| Replies: 5 Views: 4,414 A company pays its employees as managers (who recieve a fixed weekly salary), hourly workers (who recieve a fixed hourly wage for up to the first 40 hours they work and "time- and a half"-1.5 times... |
Forum: C++ Feb 23rd, 2003 |
| Replies: 19 Views: 5,426 #include <iostream>
int main()
{
int x, factorial = 1;
cout << "Enter integer: "; |
Forum: C++ Feb 23rd, 2003 |
| Replies: 19 Views: 5,426 Compiling...
3.cpp
C:\c++ storage\3.cpp(7) : error C2143: syntax error : missing ';' before '<<'
C:\c++ storage\3.cpp(7) : error C2501: 'cout' : missing storage-class or type specifiers
C:\c++... |
Forum: C++ Feb 23rd, 2003 |
| Replies: 19 Views: 5,426 |
Forum: C++ Feb 23rd, 2003 |
| Replies: 19 Views: 5,426 can anyone come up with a solution for this ? real quick for me?
the factorial of a nonnegative integer n is written n! ("n factorial") and is defined as follows: n!=n*(n-1)*(n-2)*.....*1(for... |
Forum: C++ Feb 22nd, 2003 |
| Replies: 6 Views: 4,934 Develop a C++ program that will determine whether a department-store customer has ex-ceeded the credit limit on a charge account. For each customer, the following facts are available:
a. account... |