Friday, September 15, 2017

C/C++ Projects List [30o]

 

Actually they are concepts or ideas to be implemented and are listed below. Select the title, search internet for more information and design the system by identifying proper objects-N-variables. All are stand-alone project concepts and C or C++ language is best suited for such projects. Refer already coded projects, documentations for how-to-code any concept and is called code-reviewing. You can use such already coded project as reference and modify it according to your need.

Old age Home Management System

Online Exam Interface System

Online Shop Management System

Park Maintenance System

Parking Lot Management System

Passport Management System [Govt. Dept]

Pay Roll Management System

Payroll Management System

PDF Batch File Search System [utility]

Periodic Table Display System

Personal Dairy Management System

Petrol Bunk Management System

Phone Book System

Phone Service in Hotel Management System

Pizza Shop Management System

Plane Maintenance Management System

Police Station Management System [Govt. Dept]

Pregnancy Time Daily Care Management System

Public Transport Management System [Govt. Dept]

Railway Reservation System

Railway Schedule Management System

Railway Seat Reservation System

Ration Card Management System [Govt. Dept]

Real Estate Management System

Regional Transport Office Management System [Govt. Dept]

Removing Duplicates from Given Data File

Resort Management System

Restaurant Management System

Resume In Html Generator System

Retrieving Database System of Railway

 

See also: C++ Mini Projects List for code review

How to Design System from Idea

 

Note: For source code and other details send request e-mail specifying project name: to mailforprojects@rediffmail.com. Add your comments in below available comment box.

Note: Click these label/tags to view all related posts. Tags: C++MiniProject

 

…till next post, bye-bye & take care.

Thursday, September 14, 2017

C++ Code Review: Showing Celsius or Fahrenheit degrees

Description: This program shows how to draw menu and convert Celsius to Fahrenheit or vice versa. Uses switch case to draw menu.

Code:

//Compiling Tool: Code::Block IDE with MinGW

//Program displays converted value from C to F or F to C.

 

#include<iostream>

#include<conio.h> //for getch()

#include<math.h>  //for sqrt()

#include<cstdlib> //for system()

 

using namespace std;

 

int main()

{

    float temp,result;

    int ch;

 

top:system("cls");//to clear the screen

 

    cout << endl;

    cout<<"***Temperature Converter Program***"<< endl;

    cout<<"   1. Celsius to Fahrenheit"<< endl;

    cout<<"   2. Fahrenheit to Celsius"<< endl;

    cout<<"   3. Quit"<< endl;

    cout<<"Enter your Choice:_";

    cin>>ch;

 

    if(ch > 3)

        cout<<"   Enter valid choice:_" ;

 

    switch(ch)

    {

    case 1:

    {

        cout<<"Enter temperature in Celsius:";

        cin>>temp;

        result=(temp*1.8)+32;

        cout << temp << " Degree Celsius = " << result << " Fahrenheit";

        break;

    }

 

    case 2:

    {

        cout<<"Enter temperature in Fahrenheit";

        cin>>temp;

        result=(temp-32)/1.8;

        cout << temp << " Fahrenheit = " << result << " Degree Celsius";

        break;

    }

 

    case 3:

    {

        cout<<"   Quitting the program"<< endl;

        exit(0);

    }

    default:

        goto top;

    }

 

    getch(); //to stop the screen

    goto top;

}

Output:

clip_image002

If you want to write or construct or program C++ mini-project and do not know how or from where to start buy this simple e-book: Code Review of 26 C++ mini-projects. For book sample click this link.

Add your comments in below available comment box.

Note: Click these label/tags to view all related posts. Tags: C++Code

 

…till next post, bye-bye & take care.

Tuesday, September 12, 2017

C++ Code Review: Area Calculator

 

Description: This program shows how to draw menu and calculate area of Circle, Triangle, and Rectangle individually. Uses switch case to draw menu.

Code:

//Compiling Tool: Code::Block IDE with MinGW

//Program calculates area of given object.

 

#include<iostream>

#include<conio.h> //for getch()

#include<math.h>  //for sqrt()

#include<cstdlib> //for system()

 

using namespace std;

 

int main()

{

    float a,b,c,s,r,area;

    int ch;

 

top:system("cls");//to clear the screen

 

    cout << endl;

    cout<<"***Area Calculator Program***"<< endl;

    cout<<"   1. Circle"<< endl;

    cout<<"   2. Triangle"<< endl;

    cout<<"   3. Rectangle"<< endl;

    cout<<"   4. Quit"<< endl;

    cout<<"Enter your Choice:_";

    cin>>ch;

 

    switch(ch)

    {

    case 1:

    {

        cout<<"   To calculate Area of Circle"<< endl;

        cout<<"   Enter radius :";

        cin>>r;

        area=3.14*r*r;

        break;

    }

 

    case 2:

    {

        cout<<"   To calculate Area of Triangle"<< endl;

        cout<<"   Enter three sides:";

        cin>>a>>b>>c;

        s=(a+b+c)/2;

        area=sqrt(s*(s-a)*(s-b)*(s-c));

        break;

    }

 

    case 3:

    {

        cout<<"   To calculate Area of Square"<< endl;

        cout<<"   Enter length and breadth:";

        cin>>a>>b;

        area=a*b;

        break;

    }

    case 4:

    {

        cout<<"   Quitting the program"<< endl;

        exit(0);

    }

    default:

        goto top;

    }

 

    cout<<"   Area = "<< area ;

 

    getch(); //to stop the screen

    goto top;

}

Output:

clip_image002

If you want to write or construct or program C++ mini-project and do not know how or from where to start buy this simple e-book: Code Review of 26 C++ mini-projects. For book sample click this link.

Add your comments in below available comment box.

Note: Click these label/tags to view all related posts. Tags: C++Code

 

…till next post, bye-bye & take care.