自考新教材-p301_5

Posted duanqibo

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了自考新教材-p301_5相关的知识,希望对你有一定的参考价值。

源程序:

 

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

class student
{
private:
string name1;
float score1;
public:
int i;
student(string na, float sc)
{
name1=na;
score1 = sc;
}
void output()
{
cout << setw(10) << left << name1;
cout << setw(10) << right << score1 << endl;
}
};
int main()
{
string name;
float score;
for (int i = 0; i < 3; i++)
{
cin >> name >> score;
student stud(name, score);
stud.output();
}
system("pause");
return 1;
}

运行结果:

技术图片

 

以上是关于自考新教材-p301_5的主要内容,如果未能解决你的问题,请参考以下文章

自考新教材-p176_5

自考新教材-p90_5

自考新教材-p243_5_

自考新教材-p90_5

自考新教材-p90_5

自考新教材-p328_5