1樓:
#include
#include
using namespace std;
//class father;
//class mother;
//class child;
class father
~father()//析構函式
father(const string first,const string last)//帶引數的建構函式
string getfirst()//取出father的名string getlast()//取出father的姓private:
string firstname;//名
string lastname;//姓
};//此處一定要有分號
class mother
~mother()//析構
string getfirst()//取出mother的名string getlast()//取出mother的姓private:
string firstname;
string lastname;
}; class child:public father,public mother
~child()
void showfa()
void showmo()
void showch()
private:
string firstname;
}; int main(int argc, char* argv)出以下錯誤的話在首行加#include "stdafx.h"
2樓:無聊時看動畫片
#include
#include
class father
father()
};class mather
mather()
};class child:public father,matherchild()
};int main()
3樓:匿名使用者
//email:qmroom#126.com #=@
#include
#include
#include
using namespace std;
typedef char char;
typedef /* [string] */ char *lpstr;
typedef /* [string] */ const char *lpcstr;
class father
father(lpcstr firstname, lpcstr lastname) :
m_firstname(firstname), m_lastname(lastname){}
string getname() const
void setname(lpcstr firstname, lpcstr lastname)
void setfirstname(lpcstr firstname)
void setlastname(lpcstr lastname)
protected:
string m_firstname; //姓
string m_lastname; //名
};class mother
mother(lpcstr firstname, lpcstr lastname) :
m_firstname(firstname), m_lastname(lastname){}
string getname() const
void setname(lpcstr firstname, lpcstr lastname)
void setfirstname(lpcstr firstname)
void setlastname(lpcstr lastname)
protected:
string m_firstname;
string m_lastname;
};class child : protected father, protected mother
child(lpcstr lastname) : m_lastname(lastname){}
string getfathername() const
string getmothername() const
string getname() const
void setfathername(lpcstr firstname, lpcstr lastname)
void setmothername(lpcstr firstname, lpcstr lastname)
void setfirstname(lpcstr firstname)
void setlastname(lpcstr lastname)
protected:
string m_lastname; //名
};void main()
用Devc 寫的C語言程式,沒法除錯
dev c 是乙個windows環境下c c 的整合開發環境 ide 小巧輕量但是功能齊備,適合初學者與程式設計高手的不同需求,是學習c或c 的首選開發工具。很多初次學習程式語言的人,在動手嘗試編譯執行第乙個程式時往往不是程式設計方面的問題,而是對開發工具的選擇和使用由於不熟悉而耽誤太多的時間。此處...
請各位C 高手 幫我寫乙個關機程式
給你乙個 試一試吧 include include using namespace std int main system shutdown s 一句話,很暴力的方法。c語言關機 可以通過c語言呼叫系統命令實現關機。1 c語言可以通過system函式實現呼叫系統命令 shell 命令 system函...
求大神幫寫c語言的程式,求大神幫寫一個C語言的程式
include stdafx.h include define n 100 佇列人數 define a 2 最後剩下人數 define b 70 求第b個出列 define m 3 報數到m出列void main printf 最後剩下人的編號為 n for i 0 i printf 第 d個離開佇...