Sunday, August 26, 2018

Student Information System in C++

Here is a very simple Student Information System that I wrote a long time ago in my class in C++ programming in one of the university here in Bacolod City. I hope you will find my work useful.

I am currently accepting programming work, it project, school 

programming projects , thesis and capstone projects, IT consulting 

work, computer tutorials and web development work kindly contact me in the following email address for further details.  If you want to advertise in my website kindly contact me also in my email address also. Thank you.
My email address are the following jakerpomperada@gmail.com, jakerpomperada@aol.com and jakerpomperada@yahoo.com.

My mobile number here in the Philippines is 09173084360.

My telephone number at home here in Bacolod City, Negros Occidental Philippines is  +63 (034) 4335675.

My personal website is http://www.jakerpomperada.com


Program Listing


#include <iostream>
#include <conio.h>

 using namespace std;


 main() {


     char name[50];
     int age=0;
     char school[100];
     char course[100];
     float tuition=0.00;
     char reply;
   do {
     system("cls");
      cin.ignore();
     cout << "Enter Name of the Student :";
     gets(name);
     cout << "Enter the Age of the Student :";
     cin >> age;
     cin.ignore();
    cout << "Enter the course the Student :";
     gets(course);

     cout << "Enter the Tuition Fee of the Student :";
     cin >> tuition;

     cout << "\n\n";
     cout << "\n Name    : " << name;
     cout << "\n Age     : " << age;
     cout << "\n Course  : " << course;
     cout << "\n Tuition : " << tuition;
     cout << "\n\n";
     cout << "Do you want to continue y/n";
     reply=getch();
   } while (reply == 'Y' || reply == 'y');
     if (reply != 'Y' || reply !='y')
     {
         cout << "Quit";
         return 0;
     }
     system("pause");
 }



No comments:

Post a Comment