CS计算机代考程序代写 #ifndef CRITERIA_H

#ifndef CRITERIA_H
#define CRITERIA_H

#include
using namespace std;

class Criteria
{
public:
Criteria(string=””, string=””, int=0);

string getName();
string getValue();
int getWeight();
void print();

private:
string name;
string value;
int weight;
};

#endif

Leave a Reply

Your email address will not be published. Required fields are marked *