Answered step by step
Verified Expert Solution
Link Copied!

Question

1 Approved Answer

In this exercise you will be designing a program in c++ that does the following: Prompts the user for a file name and then shows

In this exercise you will be designing a program in c++ that does the following:

Prompts the user for a file name and then shows the user with the number of word in the file. The program should then allow the user to repeatedly specify a number and the program should show that word in the file.

For example, if the file contained the text: Hello. This is the text that is contained in this file. A sample run of the program might look like this:

Enter file name: in.txt File contains 10 words. Which one would you like to see? (Enter 0 to exit): 5 The 5th word is "text". Which word would you like to see next: 0 Good bye!

Note: You may not use an array or any other aggregate structure to store all the numbers as a whole

  • For this first part of the exercise, you will use functional decomposition to develop the logic/algorithm and functions that you will use. You are not writing code at this point. You are simply determining the logical flow of your program and what functions the program should use.

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

More Books

Students also viewed these Databases questions