This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| /****************************************************************************** | |
| Programmed by | |
| Noah Schepers | |
| --- | |
| Sept. 19, 2018 | |
| *******************************************************************************/ | |
| #include <iostream> |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| #include<iostream> | |
| #include<fstream> | |
| #include<iomanip> | |
| using namespace std; | |
| class student | |
| { | |
| int rollno; | |
| char name[50]; | |
| int p_marks, c_marks, m_marks, e_marks, cs_marks; |