Reference no: EM131602266
For this exercise you are to write a program (in C or C++ preferably) that reads a text file containing a number of words and displays the words on the screen in reverse order using a stack. An algorithm of the program is shown below:
Begin main
Display a prompt for the file name
Read in the file name
Try to open the file
If the file fails to open
Print an error message on the screen and exit
Loop
Read in a word from the file
If the file read fails, terminate (break) the loop
Push the word onto the stack
End loop
Close the file
While the stack is not empty
Display the top stack word on the screen followed by a space
Pop the top value from the stack
End while
End main
Do not implement the stack using a class or struct or with STL. The stack must be implemented using a fixed size array of words and an index integer for indicating the top of the stack. The stack array and index should be global variables. A word can be a string or a c-string (i.e. a character array). You can assume no word is more than 20 characters long. The stack functions (i.e. push(), top(), pop(), isEmpty() ) should be implemented below the main() and prototyped above the main().
What are the typical stock price reactions
: When one public company acquires another public company, what are the typical stock price reactions? Why does this happen?
|
Protection of intellectual property
: Many people download movies, music, and software to a computer. Streaming services for downloading such applications are common on personal computers.
|
Discuss the given curve graph
: Label points A, B, C, D, E, and F on the graph of y = f(x) in Figure.Point A is a point on the curve where the derivative is negative.
|
What is its intrinsic value per share
: The stock’s last dividend was $0.94 per share and dividends are expected to grow forever at constant rate of 7.2% per year. What is intrinsic value per share.
|
Algorithm of the program
: For this exercise you are to write a program (in C or C++ preferably) that reads a text file containing a number of words and displays the words on the screen.
|
What is its annual yield to maturity
: If the bond’s price is $1,067.32, what is its annual yield to maturity?
|
Both bonds pay annual interest-yields to maturity
: You own two bonds. Both bonds pay annual interest, have 8 percent annual coupons, $1,000 face values, and currently have 8 percent yields to maturity.
|
What will your company repayment-issue the zeros
: what will your company's repayment be if you issue the coupon bonds? What if you issue the zeros?
|
Find approximate the instantaneous rate of change
: Make a table of values, rounded to two decimal places, for f(x) = log x (that is, log base 10) with x = 1, 1.5, 2, 2.5, 3.
|