Code Monkey home page Code Monkey logo

sms's Introduction

Student Management System

This project is made in Semester_#2 as utilizing OOP style programming in C++

classDiagram
    class LimiterBase {
        +void drawFrame(char, char, char, int, int)
        <<abstract>> +void start()
    }

    class LimiterS {
        +void drawFrame(char, char, char, int, int)
        <<abstract>> +void start()
    }

    class Limiter {
        +void start()
    }

    class Contributors {
        +void start()
    }

    class Course {
        -string courseId
        -string courseName
        -double creditHours
        -double percentageGrade
        +Course(string, string, double)
        +void setGrade(double)
        +double getGrade() const
        +string getCourseId() const
        +double getCreditHours() const
        +string getLetterGrade() const
        +double getGradePoints() const
        +void displayInfo() const
        +void editCourseInfo(string, double)
    }

    class User {
        #int id
        #string name
        +User(int, string)
        +void displayInfo() const
        +int getId() const
        +string getName() const
    }

    class Student {
        -Course* courses[MAX_COURSES]
        -int courseCount
        +Student(int, string)
        +void addCourse(string, string, double)
        +void removeCourse(string)
        +void inputGrade(string, double)
        +double calculateGPA() const
        +void displayCourses() const
        +void editUserInfo(string)
        +void editCourseInfo(string, string, double)
        +int getCourseIndex(string) const
        ~Student()
    }

    class Administrator {
        -pair<string, pair<string, double>> courseInfo[MAX_COURSES]
        -Student* students[MAX_STUDENTS]
        -int studentCount
        -int courseInfoCount
        +Administrator(int, string)
        +void addCourseInfo(string, string, double)
        +pair<string, double> getCourseInfo(string)
        +void addStudent(int, string)
        +void removeStudent(int)
        +void removeStudentFromCourse(int, string)
        +Student* findStudent(int)
        +void addCourseToStudent(int, string)
        +void displayStudents() const
        +void rankStudents()
        +void addCourse(string, string, double)
        +void removeCourse(string)
        +void removeAllStudents()
        +void removeAllCourses()
        +void editCourseDetails(string, string, double)
        +void displayEnrolledStudents(string) const
        +void readDataFromFile(string)
        +void writeDataToFile(string, Administrator&)
        ~Administrator()
    }

    LimiterBase <|-- Limiter
    LimiterS <|-- Contributors
    User <|-- Student
    User <|-- Administrator
    Student --> Course : enrolls in

    Limiter ..> printColor : uses
    Contributors ..> printColor : uses
    Administrator ..> Student : manages
    Administrator ..> Course : manages

Loading

sms's People

Contributors

masrkai avatar

Watchers

 avatar

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.