Answered step by step
Verified Expert Solution
Link Copied!

Question

1 Approved Answer

This is C++ Programming 1. Write a program that inserts the digits of an integer into an array in original order followed by reverse order.

This is C++ Programming

1. Write a program that inserts the digits of an integer into an array in original order followed by reverse order. First, prompt the user to enter a positive integer(> 0). Determine the number of digits of the integer. Create a dynamically allocated integer array of a size twice the number of digits. Now insert the digits in original order which will occupy half of the array. Then, insert the digits in reverse order. Finally, output the digits in the array. Use at least two functions to organize your program.

Hints

Use the remainder % and division operator / to determine the number of digits and to extract individual digits.

A dynamically allocated array is declared as a pointer and initialized using the new keyword.

Example

Input

12

5

Digits in array: [1][2][5][5][2][1]

2. Declare a string array of size 5. Prompt the user enter five strings that are stored in the array. Afterwards ,prompt the user to enter a character. Write a function that expects the following three parameters: an array, the size of the array, and a char. The function counts the number of occurrences of that char in all of the strings stored in the array and returns it. Call that function from the main and output the returned value.

Dont forget to include

Use .length()on a stringvariableto get the number of characters in a string, e.g. str.length()

Use array syntax on a string variable to access any char by index, e.g.:assuminga stringvariable named strthat stores hello, str[1]would return e.

Example:

Enter five items.

Item 1: hello

Item 2: C++

Item 3: Wednesday

Item 4: Its a great day

Item 5: goodbye

Target: e

The char e was found 5 times.

Step by Step Solution

There are 3 Steps involved in it

Step: 1

blur-text-image

Get Instant Access to Expert-Tailored Solutions

See step-by-step solutions with expert insights and AI powered tools for academic success

Step: 2

blur-text-image

Step: 3

blur-text-image

Ace Your Homework with AI

Get the answers you need in no time with our AI-driven, step-by-step assistance

Get Started

Recommended Textbook for

Advanced Database Systems For Integration Of Media And User Environments 98

Authors: Yahiko Kambayashi, Akifumi Makinouchi, Shunsuke Uemura, Katsumi Tanaka, Yoshifumi Masunaga

1st Edition

9810234368, 978-9810234362

More Books

Students also viewed these Databases questions

Question

6. Conclude with the same strength as in the introduction

Answered: 1 week ago

Question

7. Prepare an effective outline

Answered: 1 week ago