| 网站首页 | 业界新闻 | 小组 | 威客 | 人才 | 下载频道 | 博客 | 代码贴 | 在线编程 | 编程论坛
欢迎加入我们,一同切磋技术
用户名:   
 
密 码:  
共有 368 人关注过本帖
标题:关于c++类的问题
取消只看楼主 加入收藏
地狱之狼
Rank: 1
等 级:新手上路
帖 子:2
专家分:0
注 册:2011-5-10
收藏
 问题点数:0 回复次数:0 
关于c++类的问题
#include<string>
#include<iostream>
using namespace std;

class people{
public:
    People(){
        number=0;
        sex=m;
    }
    void input();
    void output();
private:
    int number;
    char sex;
    Date birthday;
    string name;
};
void People::input(int num,a,b,c,char se,string nam,Date birthday){
    cout<<"请输入人员姓名:";
    cin>>name;
    cout<<"请输入人员性别:";
    cin>>se;
    cout<<"请输入人员编号:";
    cin>>num;
    cout<<"请输入录入人员时间:";
    cin>>a>>b>>c;
    number=num;
    sex=se;
    name=nam;
    birthday.setDate(a,b,c);
}
void People::output(){
    cout<<"姓名:"<<name<<"\n";
    cout<<"性别:"<<sex<<"\n";
    cout<<"编号:"<<number<<"\n";
    cout<<"录入时间:"<<birthday.getYear<<"年"<<birthday.getMonth<<"月"<<birthday.getDay<<"日"<<endl;
}

class Date(){
public:
    void setDate();
    int getYear();
    int getMonth();
    int getDay();
private:
    int year,month,day;
};
void Date::setDate(int a,int b,int c){
    year=a;
    month=b;
    day=c;
}
int Date::getYear(){
    return year;
}
int Date::getMonth(){
    return month;
}
int Date::getDay(){
    return day;
}

int main(){
    People langpeople;
    Date birthday;
    langpeople.input(int num,a,b,c,char se,string nam,Date birthday);
    langpeople.output();
    return 0;
}

   
搜索更多相关主题的帖子: people 时间 姓名 
2011-05-10 22:28
快速回复:关于c++类的问题
数据加载中...
 
   



关于我们 | 广告合作 | 编程中国 | 清除Cookies | TOP | 手机版

编程中国 版权所有,并保留所有权利。
Powered by Discuz, Processed in 0.024494 second(s), 10 queries.
Copyright©2004-2024, BCCN.NET, All Rights Reserved