PDA

View Full Version : Pay for assignment solution guarantee.



Xpert
10-14-2010, 06:19 AM
dear fellow,
If you want to get the solution of an assignment pay for it. You will get a solution of this assignment it's guarantee. so just post your assignment and give the price.

asad
10-22-2010, 12:48 AM
1 solution ke liye kitna pay krna pre gah?

frndz
12-31-2010, 04:25 AM
for one solution u have to pay minimum 60rs and further its upto the assignment work.....

Xpert
12-31-2010, 01:53 PM
Well if someone want the solution then post question and bid for it.means tell the budget.

mass234
07-21-2014, 02:21 PM
I want solution for CS304, Assignment #4, Spring 2014

vuassignments
07-21-2014, 02:25 PM
CS304, Assignment #4, Spring 2014



#include<iostream>
#include<conio.h>
using namespace std;
class Transport{
private:
float Weight;
char Capacity[];
float Speed;

public:

void Load(){
cout "Goods are loaded successfully : \n" ;

}

void Unload(){
cout "Goods are unloaded successfully : \n" ;

}
virtual void Ship() = 0;


};
class Land_Transport:public Transport{
private:
char Transportation_Mode[];
char Vehicle_Type[];
public:
void Ship(){
cout "In land transport, shipping is done via truck \n";
}
};
class Air_Transport:public Transport{
private:
char Aircraft_Mode[];
char Airline_Name[];

public:
void Ship(){
cout "In air transport, shipping is done via air cargo \n";
}
};

main (){
char option;

Transport *t = new Land_Transport();
t -> Ship();
Transport *air_transport = new Air_Transport();
air_transport->Ship();

system("pause");

}