Posts
 
Reputation
Joined
Last Seen
0 Reputation Points
Unknown Quality Score

No one has voted on any posts yet. Votes from other community members are used to determine a member's reputation amongst their peers.

0 Endorsements
~769 People Reached
Favorite Forums
Favorite Tags
c++ x 8
Member Avatar for dtaylor01

I'm having a hard time with my code, can someone show me a fix? Here is my errors. 1>c:\documents and settings\chuckie taylor\my documents\c++ assignments\assignment 6\assignment 6.cpp\assignment 6.cpp\assignment 6.cpp.cpp(57) : error C2064: term does not evaluate to a function taking 2 arguments 1>c:\documents and settings\chuckie taylor\my documents\c++ assignments\assignment 6\assignment 6.cpp\assignment 6.cpp\assignment …

Member Avatar for vmanes
0
105
Member Avatar for dtaylor01

Can someone take a look at my code, I'm having errors with the end loop. [CODE]#include "stdafx.h" #include <iostream> using namespace std; int area (int, int); // function prototype int volume (int, int, int); // function prototype int _tmain(int argc, _TCHAR* argv[]) { int length, width, depth; // parameters for …

Member Avatar for Lerner
0
188
Member Avatar for dtaylor01

Can someone give me a example of a code inside a while/repeat loop so that it continues until you want it to stop using values of length, width, and depth.

Member Avatar for dtaylor01
0
58
Member Avatar for dtaylor01

I have to write a C++ code that computes the greatest common divisor of two numbers. When Declaring x, y, temp, remainder as a Integer is this right? Or can someone help me in the right direction. [ICODE]int x = 0; int y = 0; if (x < y) then …

Member Avatar for mrboolf
0
74
Member Avatar for dtaylor01

Can someone take a look at my code and see if they notice something wrong. [ICODE]int score; char grade =0; // read in total score cout << endl; cout << "Enter total score (float, must be <= 100): "; cin >> score; if (score >= 85); grade = 'A'; else …

Member Avatar for chococrack
0
235
Member Avatar for dtaylor01

Can someone run my code template to see what's wrong? [code=cplusplus] #include "stdafx.h" #include <iostream> using namespace std; int _tmain(int argc, _TCHAR* argv[ ]) { int a = 40; //No. of hrs worked during week float b = 12.75; //Pay rate: dollars per hour float c = 510; //Weekly wages …

Member Avatar for stilllearning
0
109