Answered step by step
Verified Expert Solution
Link Copied!

Question

1 Approved Answer

Q2 (1 point) Write a program in which you declare an array of chars and store the piece of text All the world's a stage.

image text in transcribed

Q2 (1 point) Write a program in which you declare an array of chars and store the piece of text All the world's a stage. Exclude the quotation marks. Do not use the string type. Do not over-allocate the amount of memory that you need. Now display that piece of text. Then declare an array of 100 doubles. Display the addresses of the 16th, 45th and 90th doubles in that array. Q3 (3 points) Write a C++ program for the following. Do not try to generalize this problem into an equation. The goal is to practice iterations/loops. There is an old story that an emperor wanted to thank the inventor of the game of chess and asked the inventor to name his reward. The inventor asked for one grain of rice for the first square, 2 for the second, 4 for the third, and so on, doubling for each of the 64 squares. That may sound modest, but there wasn't that much rice in the empire! Write a program to calculate the number of squares that are required to give the inventor a stated number of grains of rice that is provided as the input. For example, the program should calculate the number of squares that are required to earn at least 1000 grains of rice, at least 1,000,000 grains, at least 1,000,000,000 grains, etc. You'll need a loop, of course, and probably an int to keep track of which square you are at, a double to keep the number of grains on the current square, and a double to keep track of grains of all previous squares. We suggest that you print the value of all your variables for each iteration of the loop so that you can see what's going on. Demonstrate that the program works using sample inputs from the user

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

Professional Microsoft SQL Server 2014 Integration Services

Authors: Brian Knight, Devin Knight

1st Edition

1118850904, 9781118850909

More Books

Students also viewed these Databases questions

Question

What are the problems that arise when a commodity is used as money?

Answered: 1 week ago