Monday, August 31, 2015

Student Average Grade Solver Using Classes in C++

In this article I would like to share with you a program that I wrote before for my programming class in C++ I called this program student average grade solver using classes in C++.  What does the program will do is to ask the name of the students, subject and its responding grade and then the program will compute the average grade of the student.

If you have some questions about programming, about my work please send me an email at jakerpomperada@gmail.com and jakerpomperada@yahoo.com. People here in the Philippines can contact me at  my mobile number 09173084360.

Thank you very much and Happy Programming.



Sample Program Output

Program Listing

#include <iostream>


using namespace std;

class students {
    public:
    int grade[3];
    string name;
    char subjects[3][500];
};


main() {

    students person;
    int x=0,sum=0,solve_grade=0;;

    cout << "\t\t Average Grade Solver 1.0";
    cout << "\n\n";

    cout << "Enter Student Name :";

    getline(cin,person.name);
      for (x=0; x<3; x++) {
         cin.ignore();
          cout << "\nEnter Subject Name :";

           gets(person.subjects[x]);
          cout << "Enter Subject Grades  :";
          cin >> person.grade[x];
            sum+= person.grade[x];
            solve_grade=(sum/3);
      }
      cout << "\n=============================";
      cout << "\n     Generated Report        ";
      cout << "\n=============================";
      cout << "\n";
      cout << "\n Student Name : " << person.name;
        cout << "\n";
        for ( x=0; x<3; x++) {

            cout <<"\n Subject : " << person.subjects[x];
            cout <<"\n Grade   : " << person.grade[x];
       }

        cout << "\n\n";
        cout << "Average Grade in 3 Subjects is  "
             << solve_grade <<".";
        cout << "\n\n";
        system("pause");
}



No comments:

Post a Comment