Problem Solving with C++ (10th Edition)
10th Edition
ISBN: 9780134448282
Author: Walter Savitch, Kenrick Mock
Publisher: PEARSON
expand_more
expand_more
format_list_bulleted
Concept explainers
Question
Chapter 2.5, Problem 36STE
Program Plan Intro
Comments in C++:
- In C++, the comments are represented by the symbol “//”.
- If anything start with a symbol “//”, it will be considered as a comments.
- The compiler simply ignores anything that follows “//” on a line.
- If the user want a comment for more than one line, then insert a symbol “//” on each line of the comment.
- There is another method to put a comments in a C++ program. That is inserting a text between “/*…*/”.
- This symbol also considered as a comment in a C++ program.
Expert Solution & Answer
Want to see the full answer?
Check out a sample textbook solutionStudents have asked these similar questions
Hello I need some help with this. I keep getting this one wrong. The language program is Python.
Fill blank in the following code in ander to get the following output:
the name of student is Alia
the nationality of student is Jordanian
the number of training hours is 90
the title of graduation project is corona
the name of student is sami
the nationality of student is Syrian
the number of training hours is 15
the title of graduation project is Sentiment Analysis
class student :
def __init__(self,name,nationality):
self.stu_name= ----------
self.stu_nationality= ----------
def print_detail(self):
print("the name of student is :", ------------)
print("the nationality of student is :", ------------)
class -------------- :
def __init__(self,n1,n2,training,project_tit):
-----------------------------
self.training_hours = training
self.project_title = project_tit
def print_detail_under(self):
------------------------------------
print("the number of training hours is ", -----------------)…
How do I use PYTHON to create a high/low number guessing game?
Assignment reads:
If the user’s guess is higherthan the randomly chosen number, the program should say “Your guess was too high” and prompt theuser to guess another number. If the user’s guess was lower than the randomly chosen number, theprogram should say “Your guess was too low” and prompt the user to guess another number. Finally, ifthe user guesses correctly, the program should say the user’s guess was correct and tell the user howmany guesses it took them to get the number
Chapter 2 Solutions
Problem Solving with C++ (10th Edition)
Ch. 2.1 - Give the declaration for two variables called feet...Ch. 2.1 - Give the declaration for two variables called...Ch. 2.1 - Give a C++ statement that will change the value of...Ch. 2.1 - Give a C++ statement that will increase the value...Ch. 2.1 - Give a C++ statement that will change the value of...Ch. 2.1 - Prob. 6STECh. 2.1 - Prob. 7STECh. 2.2 - Give an output statement that will produce the...Ch. 2.2 - Give an input statement that will fill the...Ch. 2.2 - Prob. 10STE
Ch. 2.2 - Write a complete C++ program that writes the...Ch. 2.2 - Write a complete C++ program that reads in two...Ch. 2.2 - Prob. 13STECh. 2.2 - Write a short program that declares and...Ch. 2.3 - Convert each of the following mathematical...Ch. 2.3 - Prob. 16STECh. 2.3 - What is the output of the following program lines...Ch. 2.3 - Write a complete C++ program that reads two whole...Ch. 2.3 - Given the following fragment that purports to...Ch. 2.3 - What is the output of the following program lines...Ch. 2.4 - Write an if-else statement that outputs the word...Ch. 2.4 - Suppose savings and expenses are variables of type...Ch. 2.4 - Write an if-else statement that outputs the word...Ch. 2.4 - Write an if-else statement that outputs the word...Ch. 2.4 - Consider a quadratic expression, say x2 x 2...Ch. 2.4 - Consider the quadratic expression x2 4x + 3...Ch. 2.4 - What is the output of the following cout...Ch. 2.4 - What is the output produced by the following (when...Ch. 2.4 - What output would be produced in the previous...Ch. 2.4 - What is the output produced by the following (when...Ch. 2.4 - What is the output produced by the following (when...Ch. 2.4 - What is the most important difference between a...Ch. 2.4 - What is the output produced by the following (when...Ch. 2.4 - Write a complete C++ program that outputs the...Ch. 2.5 - The following if-else statement will compile and...Ch. 2.5 - Prob. 36STECh. 2.5 - Write a complete C++ program that asks the user...Ch. 2 - A metric ton is 35,273.92 ounces. Write a program...Ch. 2 - The Babylonian algorithm to compute the square...Ch. 2 - Many treadmills output the speed of the treadmill...Ch. 2 - Write a program that plays the game of Mad Lib....Ch. 2 - The following is a short program that computes the...Ch. 2 - A government research lab has concluded that an...Ch. 2 - Workers at a particular company have won a 7.6%...Ch. 2 - Modify your program from Programming Project 2 so...Ch. 2 - Negotiating a consumer loan is not always...Ch. 2 - Write a program that determines whether a meeting...Ch. 2 - Prob. 6PPCh. 2 - It is difficult to make a budget that spans...Ch. 2 - You have just purchased a stereo system that cost...Ch. 2 - Write a program that reads in ten whole numbers...Ch. 2 - Modify your program from Programming Project 9 so...Ch. 2 - Sound travels through air as a result of...Ch. 2 - Prob. 12PPCh. 2 - The HarrisBenedict equation estimates the number...Ch. 2 - Write a program that calculates the total grade...Ch. 2 - It is important to consider the effect of thermal...Ch. 2 - Prob. 16PP
Knowledge Booster
Learn more about
Need a deep-dive on the concept behind this application? Look no further. Learn more about this topic, computer-science and related others by exploring similar questions and additional content below.Similar questions
- Please use C++ and only use libraries <iostream> and <cmath>. Also ultilize cin.ignore to let responses be recognized with a Y or Yes. Thank you!arrow_forwardHere is the main function in a program int main () { int x = 30; //more code goes here someFunction (x) ; cout « x; return 0; } Assume the heading for someFunction is written correctly with an integer parameter named x, and that this is the body of that function: { x = x * 20; //more code goes here } What will be the output? Just enter a number. If there would be an error, enter -999arrow_forwardPlease write a program which prints out the following story. The user gives a name and a year, which should be inserted into the printout. Please type in a name: Mary Please type in a year: 1572 Mary is a valiant knight, born in the year 1572. One morning Mary woke up to an awful racket: a dragon was approaching the village. Only Mary could save the village's residents. The story should change according to the input given by the user. Sample output 1arrow_forward
- Q1. Write a program in which the output of the program should be the performance result of a student till its last semester. The performance is calculated on the basis of CGPA obtained by student. The performance is Excellent if student CGPA is greater than 3.5 and less than equal to 4.0, good if student CGPA is greater than 3.0 and less than equal to 3.5, satisfactory if student CGPA is greater than 2.0 and less than equal to 3.5 and not satisfactory if less than equal to 2.0. The GPA is calculated on the basis of following points, user will enter the percentage of student subjects (at least 5) and your program should give the performance output of student. Your program should display the grade of each subject. Marks Grades Undergraduate points 90-100 A 4.00 86-89 A- 3.67 81-85 B+ 3.33 77-80 3.00 72-76 В- 2.67 68-71 С+ 2.33 63-67 C 2.00 58-62 С- 1.67 54-57 D+ 1.33 50-53 D 1.00 Below 50 F 0.00arrow_forwardJust answer it directly wihtout explaing. Thank You.arrow_forwardWrite a tester program that counts and displays the number of iterations of the following loop: while problemSize > 0:problemSize = problemSize // 2 After you have write the code. Run the program you created using problem sizes of 1000, 2000, 4000, 10,000, and 100,000. As the problem size doubles or increases by a factor of 10, what happens to the number of iterations?arrow_forward
- Question 2: As a python programmer for an educational institution you are instructed to write a program to simulate the grades for 5 subject areas and display the grade for each based on the following guidelines: Take in the marks of 5 subjects from the user and store it in different variables. 2. Find the average of the marks. 3. Use an else condition to decide the grade based on the average of the marks. 4. Print the Words "Successful Grad Earned" if the student has passed, if the student has failed print the Words" Re-Take Exam" 5. Exit A. Write an algorithm to represent the steps for this program B: Write a program in python to execute the guidelines presented above C. Draw a detailed flowchart to represent the programarrow_forwardCan the above algorithm be ran through a test example?arrow_forwardWrite a C++ program based on the design you created in Exercise 2a and name it NameSort.cpp. Step through the code by hand. // Enter your name as a comment for program identification // Program assignment NameSort.cpp // Enter your class section, and time // /* The program NameSort.cpp is a program that prompts the user to enter three names separated by blanks. The names are displayed in alphabetical order. */ /* The user will input three names separated by blanks. */ /* The names will be displayed in alphabetical order. */ //header files // use the correct preprocessor directives for input/output and strings ------------------------- --------------------------- ------------------------ int main() { // declare variables /* declare 3 string variables to read in the three names */ --------------------------------------------- // // prompt the user for three names --------------------------------------------- // read in the three names ----------------------------------------------- // //…arrow_forward
- Coronavirus (COVID-19) is causing a lot of panic the world over. Most people in developing countries are panicking because there are not proper test kids to determine whether one has the virus or not. You have been consulted to develop a program that could be used as a first step in determining the likelihood that one has it or not so that persons could then be referred to the testing center to be tested. Your task is to:a. Write a java program that request for1. A person’s age2. Temperature3. Dry cough4. Sneezing5. Running nose b. Your program should refer to the testing center when:1. Temperature >38oC and Sneezing, Running nose, Dry cough allrespond to yes 2. Or Temperature >38oC and any two from “a 3 – 5” above all respondto yes 3. Otherwise your program shouldn’t display go homearrow_forwardMad Libs are activities that have a person provide various words, which are then used to complete a short story in unexpected (and hopefully funny) ways. Complete the program to read the needed values from input, that the existing output statement(s) can use to output a short story. Ex: If the input is: Eric Chipotle 12 cars. the output is: Eric went to Chipotle to buy 12 different types of cars. 340136.2251206.qx3zay7 LAB 2.31.1: LAB: Mad Lib 0/10 ACTIVITY LabProgram.java Load default template... 1 import java.util.Scanner; 2 3 public class LabProgram { 4 5 6 7 8 9 10 11 11 went to + generic Location + to buy + wholeNumber + different types of Run your program as often as you'd like, before submitting for grading. Below, type any needed input values in the first box, then click Run program and observe the program's output in the second box. AAAAA OF ENP 12 public static void main(String[] args) { Scanner scnr = new Scanner(System.in); String firstName; String genericLocation; int…arrow_forward14. What is the difference between a test stub and a test driver?arrow_forward
arrow_back_ios
SEE MORE QUESTIONS
arrow_forward_ios
Recommended textbooks for you
- C++ Programming: From Problem Analysis to Program...Computer ScienceISBN:9781337102087Author:D. S. MalikPublisher:Cengage Learning
C++ Programming: From Problem Analysis to Program...
Computer Science
ISBN:9781337102087
Author:D. S. Malik
Publisher:Cengage Learning