SHARE
SPREAD
HELP

The Tradition of Sharing

Help your friends and juniors by posting answers to the questions that you know. Also post questions that are not available.


To start with, Sr2Jr’s first step is to reduce the expenses related to education. To achieve this goal Sr2Jr organized the textbook’s question and answers. Sr2Jr is community based and need your support to fill the question and answers. The question and answers posted will be available free of cost to all.

 

#
Authors:
Walter Savitch ,julia Lobur
Chapter:
Introduction To Computers And C++ Programming
Exercise:
Programming Projects
Question:1 | ISBN:9780321531346 | Edition: 7

Question

Using your text editor, enter (that is, type in) the C++ program shown in Display 1.8. Be certain to type the first line exactly as shown in Display 1.8. In particular, be sure that the first line begins at the left-hand end of the line with no space before or after the # symbol. Compile and run the program. If the compiler gives you an error message, correct the program and recompile the program. Do this until the compiler gives no error messages. Then run your program.

TextbookTextbookTextbookTextbookTextbookTextbookTextbookTextbookTextbookTextbookTextbookTextbookTextbookTextbookTextbookTextbookTextbook

Answer




Modified program code:

//Header file
#include <iostream>
using namespace std;

//main function
int main( ) 
{
	//Variable declaration
	int number_of_pods, peas_per_pod, total_peas;
	//Prompt the user to enter input
	cout << "Press return after entering a number.";
	cout << "Enter the number of pods:";
	cin >> number_of_pods;
	cout << "Enter the number of peas in a pod:";
	 cin >> peas_per_pod;
	//Calculation
	 total_peas = number_of_pods * peas_per_pod;
	 //Display output
	cout << "If you have ";
	 cout << number_of_pods;
	cout << " pea pods ";
	cout << "and ";
	cout << peas_per_pod;
	cout << " peas in each pod, then ";
	cout << "you have ";
	cout << total_peas;
	cout << " peas in all the pods. ";

	
	
	return 0;
 }

 

Output:

 

Press return after entering a number.Enter the number of pods:10
Enter the number of peas in a pod:15
If you have 10 pea pods and 15 peas in each pod, then you have 150 peas in all the pods. 
0 0

Discussions

Post the discussion to improve the above solution.