| | |
Vector Addition Using OOP?
![]() |
•
•
Join Date: Apr 2009
Posts: 1
Reputation:
Solved Threads: 0
I want to create a program that asks the user to enter two vector (size and direction), and calculates its addition through turning it into components (using OOP).
here's what I've got so far (I don't know how to fix the errors), I'm not sure what's wrong/ to do next (vector 1 has a magnitude of 1 and 60 degrees while vector 2 has 2 and 50 degrees):
Thanks a lot for the help!
here's what I've got so far (I don't know how to fix the errors), I'm not sure what's wrong/ to do next (vector 1 has a magnitude of 1 and 60 degrees while vector 2 has 2 and 50 degrees):
C++ Syntax (Toggle Plain Text)
#include<iostream> #include<cmath> using namespace std; // A class declaration for class Complex // This class creates complex number objects z = x + i*y, // where x is the real and y the imaginary part class Vector { Public: Vector(); void assign (double x, double y); void convert (double x, double y); Vector modulus(); Vector operator+(const Vector &z); Vector operator-(double xsize, double ysize); void Vector::assign(double x, double y){ double size = x; double degree = y; } void Vector::convert(double x, double y){ double xsize = size*cos(degree/180.0); double ysize = size*sin(degree/180.0); } Vector Vector::operator(const Vector &z){ Vector temp; Vector xsize=(*this).xsize+z.xsize; Vector ysize=(*this).ysize+z.ysize; return Temp; ) Vector Vector::modulus(){ resultantvec= sqrt(xsize*xsize + ysize*ysize); return resultantvec; } Vector Vector::operator-(double xsize, double ysize){ resultantrad=atan2(ysize/xsize); resultantdeg=resultantrad*180; return resultantdeg; } //Below, the main() int main(){ Vector num1; Vector num2; num1.assign(1,60); num2.assign(2,50); cout<<"the resultant vector is"<<resultantvec<<"at an angle of" resultantdeg<<endl; return 0; }
Thanks a lot for the help!
Last edited by everydaybh; Apr 8th, 2009 at 10:44 pm.
•
•
Join Date: Jan 2009
Posts: 54
Reputation:
Solved Threads: 7
Other than that, in function assign , you are using local variables, which make it meaningless.
Where are the Data members?
I appreciate that you have modified complex number class to work here. This is a good example of code re-usability. But a Private inheritance in this matter would have been more eye-catching.
Well, The program has several typographical and syntactical errors.
Correct it!!.
I appreciate that you have modified complex number class to work here. This is a good example of code re-usability. But a Private inheritance in this matter would have been more eye-catching.
Well, The program has several typographical and syntactical errors.
Correct it!!.
Siddhant Sanyam
(Not posting much)
My Blog: Yatantrika
Migrate to Standard C++ :When to tell your C++ Code is Non-Standard.
Please Read before posting: How To Ask Questions The Smart Way
(Not posting much)
My Blog: Yatantrika
Migrate to Standard C++ :When to tell your C++ Code is Non-Standard.
Please Read before posting: How To Ask Questions The Smart Way
Agreed with all above ...
To the OP: Please remember that every C++ keyword is written in lowercase, this was introduced to keep everything simple, so actually you don't have to hesitate whether you've to enter an uppercase letter or a lowercase one, it's just always in lowercase ...
To the OP: Please remember that every C++ keyword is written in lowercase, this was introduced to keep everything simple, so actually you don't have to hesitate whether you've to enter an uppercase letter or a lowercase one, it's just always in lowercase ...
Last edited by tux4life; Apr 9th, 2009 at 4:34 am.
"You can't build a reputation on what you are going to do."
![]() |
Other Threads in the C++ Forum
- Previous Thread: in over my head...pointers/variables
- Next Thread: Why Doesnt this simple Cout statement work??
Views: 482 | Replies: 4
| Thread Tools | Search this Thread |
Tag cloud for C++
6 algorithm array arrays assignment beginner binary c++ c++borland c/c++ calculator char class classes code compile compiler constructor conversion convert count delete dll dynamic encryption error file files filestream forms fstream function functions game givemetehcodez graph graphics gui homework iamthwee image input int lazy link linked-list linker list loop loops math matrix member memory newbie number object objects opengl output parameter path pointer pointers problem program programming project python random read reading recursion recursive reference return search server sort spoonfeeding string strings struct student studio template templates text time tree variable vc++ vector video visual win32 window windows winsock wxwidgets






