码迷,mamicode.com
首页 > 其他好文 > 详细

自考新教材-p90_5(1)

时间:2020-02-06 16:30:10      阅读:64      评论:0      收藏:0      [点我收藏+]

标签:return   结果   turn   std   src   bsp   mamicode   nbsp   red   

源程序:

#include <iostream>
#include <string>
using namespace std;

class Course
{
private:
string coursename;
int credit;
int xueshi;
string type;
string profession;
public:
Course(string coursename1, int credit1, int xueshi1, string type1, string profession1)
{
coursename = coursename1;
credit = credit1;
xueshi = xueshi1;
type = type1;
profession = profession1;
}
string get_coursename()
{
return coursename;
}
int get_credit()
{
return credit;
}
int get_xueshi()
{
return xueshi;
}
string get_type()
{
return type;
}
string get_profession()
{
return profession;
}
};

int main()
{
Course course("网络实训",4,4,"专业课","计算机网络");
cout << "我叫李明"<<endl<<"本学期计算机网络只学一门专业课" << endl;
cout << "课程名称是:";
cout <<"《"<< course.get_coursename()<<"》"<<endl;
cout<<"学分为:"<<course.get_credit()<<endl;
system("pause");
return 1;
}

运行结果:

技术图片

 

自考新教材-p90_5(1)

标签:return   结果   turn   std   src   bsp   mamicode   nbsp   red   

原文地址:https://www.cnblogs.com/duanqibo/p/12268946.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!