dear we already post solution search it please
Please give the solution pleaseView more the latest threads:
- CS607 Artificial Intelligence Assignment No.3 Solution...
- CS602 Computer Graphics Assignment No.2 Solution Spring...
- CS605 Software Engineering-II Assignment No.2 Solution...
- CS304 Object Oriented Programming.Assignment No. 3 Solution...
- HRM627 Human Resource Development Assignment No.1 Solution...
- SOC101 Introduction to Sociology Assignment No.1 Solution...
- PSY101 Introduction to Psychology Assignment No.1 Solution...
- SOC401 Cultural Anthropology Assignment No.1 Solution...
- PSY404 Abnormal Psychology Assignment No.1 Solution Spring...
- PHY101 Physics Assignment No.1 Solution Spring Semester 2013
assignment is :
Problem Statement: Multiplication of two objects of same class
• You are required to write a class. Class should have an array of 10 integers as its private data member.
Class should have
• A default constructor which will initialize all array elements with zero.
• Getter and setter functions
• An operator overloading function which will overload * operator for this class.
You are required to create three objects of the same class.
. You must assign values to first and second objects through setter functions. You can either take input arrays from user or use hard coded values.
Display the values of first and second object through getter functions.
Multiply both objects and store the result of multiplication in third object.
Multiplication means the 1st element of member array of object1 should be multiplied by 1st element of member array of object2. Similarly, 2nd element should be multiplied with 2nd and so on. In the end, display the result stored in third object.
Your program should support the statement like a = b * c, where a, b and c are objects of the same class.
dear we already post solution search it please
plz send cs 201 5th assignment i need this plz
but it is not fine solution
samina javed
Xpert bhai plz cs201 ki 5th Assignment ka solution uload kr do
search kiya hai liken 5th Assignment ka solution nhi mila plz ap upload kr do na
kesi baten ker raha ho Mian.
Urgent call: 03455242488. | Virtual University Assignments
Virtual University GDBs | Virtual University Papers | Vu Projects | Vu Handouts
About Expert
#include<iostream.h>
#include<fstream.h>
main()
{
ifstream bill;
char file []="Elec_Bil.txt";
const int a=100;
char fullText[a];
bill.open(file);
if(!bill)
{
cout<<"Error the file is not exist"<<file<<endl;
exit(1);
}
while(!bill.eof())
{
bill.getline(fullText,a);
cout << fullText << endl;
}
bill.close();
system("pause");
}
plz send the solution of 5th assignment of cs201 and 4th assignment of mth202.Originally Posted by Xpert Only the registered members can see the link. Register here
![]()
#include<iostream>
#include<conio.h>
#include<stdlib.h>
using namespace std;
class Customer
{
private:
string Name;
int CustomerId;
int Spending;
int tax;
int discount;
int totalbill;
public:
void setName(string);
int setCustomerId(int);
int setSpending(int);
int getName(string);
int getCustomerId(int);
int getSpending(int);
void display()
{
cout<<"Customer Name : "<<Name<<endl<<endl<<"ID : "<<CustomerId<<endl<<endl<<"Spending : "<<Spending<<endl<<endl;
}
Customer();
Customer(string, int, int);
friend ostream & operator<<(ostream &, Customer&);
friend istream & operator>>(istream &, Customer&);
friend ostream &star(ostream &);
};
ostream & star(ostream & output)
{
output<<"*";
return output;
}
Customer::Customer()
{
Name="No Name";
CustomerId=0;
Spending=0;
}
Customer::Customer(string s, int i, int j)
{
Name=s;
CustomerId=i;
Spending=j;
}
istream & operator>>(istream & input, Customer &c)
{
cout<<"Enter the name of customer : ";
input>>c.Name;
cout<<"Enter the customer-id : ";
input>>c.CustomerId;
cout<<"Enter the Spending : ";
input>>c.Spending;
return input;
}
ostream & operator<<(ostream & output, Customer &c)
{
for(int i=0;i<55;i++)
{
if(i==25)
{
output<<"Customer Bill Information";
}
else
{
output<<star;
}
}
output<<endl;
output<<"Name :";
for(int a=0;a<21;a++)
{
if(a==20)
{
output<<c.Name<<endl;
}
else
{
output<<star;
}
}
output<<"ID :";
for(int a=0;a<23;a++)
{
if(a==22)
{
output<<c.CustomerId<<endl;
}
else
{
output<<star;
}
}
output<<"Spending :";
for(int a=0;a<19;a++)
{
if(a==18)
{
output<<c.Spending<<endl;
}
else
{
output<<star;
}
}
if(c.Spending<=5000)
{
c.tax=(c.Spending*5)/100;
c.discount=(c.Spending*1)/100;
c.totalbill=c.Spending+c.tax-c.discount;
output<<"Tax :";
for(int a=0;a<27;a++)
{
if(a==26)
{
output<<c.tax<<endl<<"Discount :";
for(int a=0;a<19;a++)
{
if(a==18)
{
output<<c.discount<<endl<<"Total Bill :";
for(int a=0;a<17;a++)
{
if(a==16)
{
output<<c.totalbill<<endl;
}
else
{
output<<star;
}
}
}
else
{
output<<star;
}
}
}
else
{
output<<star;
}
}
}
else if(c.Spending>5000 & c.Spending<10000)
{
c.tax=(c.Spending*10)/100;
c.discount=(c.Spending*2)/100;
c.totalbill=c.Spending+c.tax-c.discount;
output<<"Tax :";
for(int a=0;a<27;a++)
{
if(a==26)
{
output<<c.tax<<endl<<"Discount :";
for(int a=0;a<19;a++)
{
if(a==18)
{
output<<c.discount<<endl<<"Total Bill :";
for(int a=0;a<17;a++)
{
if(a==16)
{
output<<c.totalbill<<endl;
}
else
{
output<<star;
}
}
}
else
{
output<<star;
}
}
}
else
{
output<<star;
}
}
}
else if(c.Spending>10000)
{
c.tax=(c.Spending*15)/100;
c.discount=(c.Spending*3)/100;
c.totalbill=c.Spending+c.tax-c.discount;
output<<"Tax :";
for(int a=0;a<27;a++)
{
if(a==26)
{
output<<c.tax<<endl<<"Discount :";
for(int a=0;a<19;a++)
{
if(a==18)
{
output<<c.discount<<endl<<"Total Bill :";
for(int a=0;a<17;a++)
{
if(a==16)
{
output<<c.totalbill<<endl;
}
else
{
output<<star;
}
}
}
else
{
output<<star;
}
}
}
else
{
output<<star;
}
}
}
return output;
}
main()
{
Customer obj;
cin>>obj;
cout<<obj;
system("pause");
}
There are currently 1 users browsing this thread. (0 members and 1 guests)