アットウィキロゴ

employee

class employee{
public:
	int number;
	char name[80];
	int salary;
	void ShowData();
};
void employee::ShowData(){
	cout<<number<<endl;
	cout<<name<<endl;
	cout<<salary<<endl;
	return;
}

タグ:

+ タグ編集
  • タグ:
最終更新:2008年05月13日 09:26