いいえを数える必要があります。setvalで作成されたオブジェクトの。助けてください。ソースコード:https ://www.dropbox.com/s/z6igpioidhov9oo/static.cpp
#include<iostream>
#include<conio.h>
using namespace std;
class student
{
static int count;
protected:
char name[20];
char course[20];
int roll;
float fees;
public:
student()
{
}
void setval()
{
count++;
cout<<"\nEnter the name : ";
cin>>name;
/*cout<<"\nEnter the course : ";
cin>>course;
cout<<"\nEnter the roll : ";
cin>>roll;
*/cout<<"\nEnter the fees : ";
cin>>fees;
}
friend float calfeespaid(student);
void showval()
{
cout<<"\nName = "<<name;
//cout<<"\nCourse = "<<course;
//cout<<"\nRoll = "<<roll;
cout<<"\nfees = "<<fees;
//cout<<"\nNo. of objects created : "<<count;
}
};
float calfeespaid(student s)
{
static float total;
total=total+s.fees;
return total;
}
main()
{
student s[5],a;
for(int i=0;i<3;i++)
{
s[i].setval();
calfeespaid(s[i]);
}
for( int i=0;i<3;i++)
{
//cout<<count;
s[i].showval();
}
cout<<"\nTotal Fees Paid : "<<calfeespaid(a);
getch();
}
クラスの生徒には3つのメンバー関数があります:1。setval:入力を取得する2. showval:出力を表示する3. calfeespaid:支払った料金の合計額を計算する
ここで、私の目的は、setval関数で作成されたオブジェクトの数をカウントする静的int変数countを作成することです。