Friday, September 29, 2017

C/C++ Projects List [19t]

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.

Taxi Management System

Telephone Bill Generator System

Telephone Directory System

Telephone/EPBX Management System

Tennis Score Keeper System

Tic Tac Toe Game System

Token Management System

Toll Gate Management System

Traffic Light Simulator

Train Seat Reservation System

TV Repair Diagnostic Tool System

Virtual Piano

Voting Machine System

Warehouse Management System

Washing Machine Repair Tool System

Water Supply Management System [Govt. Dept]

Weather Monitor System

Wind Energy Simulator System

Zoo Management System

 

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 28, 2017

C++ Code Review: Draws triangle of user given size height

Description: This program shows how to draw triangle using natural numbers of user defined height.

Code:

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

//Program draws triangle of user given height.

 

#include<iostream>

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

#include<cstdlib> //for system()

 

using namespace std;

int main()

{

 

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

 

        int i, j , z;

        cout << "Enter height of triangle:_";

        cin >> z;

        for (i = 1; i <= z ; i++)

        {

            for ( j = 1 ; j <= i ; j++)

            {

                cout << j ;

            }

            cout << endl;

        }

 

 

    cout<<endl<<"Press any key to terminate program";

    getch();

    return(0);

}

 

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 26, 2017

C++ Code Review: Basic Mathematics operations on two integer expression

Description: This program shows how to do basic mathematic operations on given two numbers. The specialty of the program is it takes expression as user input that means user has to enter the inputs along with operation symbol. Such as: 3+5, 6*7, 9/3, 25%4.

Code:

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

//Program uses basic maths operators to do sum calculations.

 

#include<iostream>

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

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

#include<cstdlib> //for system()

 

using namespace std;

int main()

{

 

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

    int a,b, result;

    char c;

    cout<<"Enter two variables expression using +/-/*///% operator(Ex:25%4):";

    cin>>a>>c>>b;

 

    switch(c)

    {

    case'+':

        result = a+b;

        break;

 

    case'-':

        result = a-b;

        break;

 

    case'*':

        result = a*b;

        break;

 

    case'/':

        result = a/b;

        break;

 

    case'%':

        result = a%b;

        break;

    }

    cout<<"Result:"<< result;

    getch();

    return(0);

}

 

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.