Question: THE PROVIDED QUESTION IS write a class to represent a vector (a series of float values). Include member functions to perform the following tasks: 1)To

THE PROVIDED QUESTION IS

write a class to represent a vector (a series of float values). Include member functions to perform the following tasks: 1)To Create the Vector 2)To modify the value of a given element 3)To multiply by a scalar value. 4)To display the vector in the form (10,20,30....) Write a program to test your class

SO ILL BE GIVING A CODE OF C++ .PLEASE EXLAIN ME THE CODE LINE BY LINE AND TELL ME THE ALGORITHM / FLOWCHART OF THE CODE . IT IS OF THE TOPIC VECTORS . IF THERE IS A SHORT ALERNATIVE CODE PROVIDE ME THE CODE .

// CODE BEGGINS

#include #include intconst size=50; class vector { float d[size]; int s; public: void create(void); void modify(void); void multiply(void); void display(void); }; void vector :: create(void) { cout<<" Enter of Array you want to create:-"; cin>>s; cout<<"Enter "<>d[i]; } void vector :: modify(void) { int mfy_value; float with; cout<<" Enter Location of array at which value is to be modified:-"; cin>>mfy_value; cout<<"Enter Value with which you want to Replace:-"; cin>>with; d[mfy_value]=with; } void vector :: multiply(void) { int mul; cout<<" Enter value with which you want to multiply:-"; cin>>mul; for(int i=0;i>choice; switch(choice) { case 1: o1.create(); break; case 2: o1.modify(); break; case 3: o1.multiply(); break; case 4: o1.display(); break; case 5:goto end; } }while(1); end: }

// CODE ENDS

Step by Step Solution

There are 3 Steps involved in it

1 Expert Approved Answer
Step: 1 Unlock blur-text-image
Question Has Been Solved by an Expert!

Get step-by-step solutions from verified subject matter experts

Step: 2 Unlock
Step: 3 Unlock

Students Have Also Explored These Related Databases Questions!