早教吧 育儿知识 作业答案 考试题库 百科 知识分享

怎样在mathematica中将一个有一个变量的函数赋给一个有四个变量的函数,其中第一个函数未知我mathematica虽然学的不精,但请不要用c语言糊弄我

题目详情
怎样在mathematica中将一个有一个变量的函数赋给一个有四个变量的函数,其中第一个函数未知
我mathematica虽然学的不精,但请不要用c语言糊弄我
▼优质解答
答案和解析
class Student
{
char number[];
char* name;
char* cout;
int mark ;
public:
Student(char num[],char* Name,char * Cout,int Mark);
{
number=num; name =Name; cout=Cout;mark =Mark;
}
int getmark() const
{
return mark;
}
char* getname() const
{
return name;
}
void print() const
{
cout<<"NAME:"<cout<<"NUMBER:"<cout<<"COUT:"<cout<<"MARK:"<}
bool operator<(Student& stu) const
{
if (markreturn true;
else
return false;
}
bool operator>(Student& stu) const
{
if (mark>stu.getmark())
return true;
else
return false ;
}
bool operator =(Student& stu) const
{
if (mark ==stu.getmark())
return true;
else
return false ;
}
};
main ()
{
Student stu1 ("123","friststu","computer","60");
Student stu2 ("456","secondstu","computer","80");
if (stu1 >stu2 )
{
stu1.print();
stu2.print();
cout<<}
else
{
stu1.print();
stu2.print();
cout<}
return 0;
}