bhoom10 / Hisaab_app

Accounts application for trips with friends

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

Hisaab_app

Accounts application for trips with friends

This is a C++ applications that takes into account expenditures of a set of people for a period of time and outputs the settled accounts

Input format:

Number of People

First names of all people

Expenditures

The first line contains number of people. Next line has the first names of each person. The next few lines have the expenditures. Each expenditure is of the following format:

Sample input:

4

A B C D

A 100 A B C D

B 500 C D

D 300 A B

Explanation:

A spends 100 for A,B,C and D. B spends 500 for C and D. D spends 300 for A and B

Sample output:

A gives 75

B gets 325

C gives 275

D gets 25

About

Accounts application for trips with friends


Languages

Language:C++ 100.0%