Menu

Please Help C Consider Series Numbers Beginning User Specified Start Running Including Use Q43896768

Input start Number Input end Number Is Cat? write Cat to file OD OD write number word to file Is Dog? write Dog to fileplease help with C++ Considerthe series of numbers beginning at user-specified start and runningup to but not including user-specified end, so for example start=1and end=5 gives the series 1, 2, 3, 4. Return a new string[] arraycontaining the string form of these numbers (e.g. “one”, “two”,”fifty-three” etc., except for multiples of 3, use “Cat” instead ofthe number, for multiples of 7 use “Dog”, and for multiples of both3 and 7 use “CatDog”. For the series above, the returned arraywould be: “one”, “two”, “Cat”, “four”. Test with numbers from -10to 110. Write your string array to a file named YourNameCatDog.txt- one value at a time. turn in commented code with pseudocode. Thisproject tests: algorithm design functions arrays strings loopsconditionals pseudocode / flowchart user interface design testingstrings input validation

Input start Number Input end Number Is Cat? write Cat to file OD OD write number word to file Is Dog? write Dog to file Show transcribed image text Input start Number Input end Number Is Cat? write Cat to file OD OD write number word to file Is Dog? write Dog to file

Expert Answer


Answer to please help with C++ Consider the series of numbers beginning at user-specified start and running up to but not includin…

OR