Article Categories
- All Categories
-
Data Structure
-
Networking
-
RDBMS
-
Operating System
-
Java
-
MS Excel
-
iOS
-
HTML
-
CSS
-
Android
-
Python
-
C Programming
-
C++
-
C#
-
MongoDB
-
MySQL
-
Javascript
-
PHP
Selected Reading
C++ code to find out the total amount of sales we made
Suppose, we are selling 4 items and the price of the i-th item is given in the array 'cost[i]'. Now we sell the items in the order given in the string 'items'. We have to find out the total amount of sales that we have made. The string 'items' contain integer numbers from 1 to 4, duplicates can be present and they can be in any order.
So, if the input is like cost = {10, 15, 10, 5}, items = "14214331", then the output will be 75.
Steps
To solve this, we will follow these steps −
total := 0 for initialize i := 0, when iExample
Let us see the following implementation to get better understanding
#includeusing namespace std; #define N 100 int solve(int cost[], string items) { int total = 0; for(int i = 0; i Input
{10, 15, 10, 5}, "14214331"Output
75
Advertisements
