Advertisement
Guest User

Untitled

a guest
May 20th, 2018
120
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.59 KB | None | 0 0
  1. #pragma once
  2. #include <iostream>
  3. #include <string>
  4. using namespace std;
  5. class student
  6. {
  7. private:
  8. string name;
  9. unsigned int age, stud_year;
  10. double grade;
  11. public:
  12. static string SarodipSatra(student *, int,int);
  13. static void input_name(student *,int);
  14. static void input_age(student*,int);
  15. static void input_StudYear(student*,int);
  16. static void input_grade(student*,int);
  17. static bool check_empty(student *);
  18. static string show_name(student*, int);
  19. static int show_age(student*, int);
  20. static int show_StudYear(student*, int);
  21. static double show_grade(student*, int);
  22. student();
  23. };
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement