文章详情

  • 游戏榜单
  • 软件榜单
关闭导航
热搜榜
热门下载
热门标签
php爱好者> php文档>C++习题-使用指针操作[3.7.3]

C++习题-使用指针操作[3.7.3]

时间:2010-11-18  来源:chengxiaopeng

#include <iostream>
using namespace std;

class Student
{
    public:
    Student(int n,float s):num(n),score(s){}
    
    void change(int n,float s)
    {
        num = n;
        score = s;
    }
    
    void display()
    {
        cout << num << " " << score << endl;
    }
    
    private:
    int num;
    float score;
};

int main()
{
    Student stud(101,78.5);
    Student *p = &stud;
    p->display();
    p->change(101,80.5);
    p->display();
    
    system("pause");
    return 0;
}


相关阅读 更多 +
排行榜 更多 +
辰域智控app

辰域智控app

系统工具 下载
网医联盟app

网医联盟app

运动健身 下载
汇丰汇选App

汇丰汇选App

金融理财 下载