Database System Concepts
Database System Concepts
7th Edition
ISBN: 9780078022159
Author: Abraham Silberschatz Professor, Henry F. Korth, S. Sudarshan
Publisher: McGraw-Hill Education
Bartleby Related Questions Icon

Related questions

Question

please complete this c++ code and also please add in professional comments using the // command thank you 

5
6
7
8 int main()
9
{
10
11
12
13
18
19
20
14 cout<<"Input Menu"<<endl<<endl;
15
16
17
21
22
23
25
27
28
29
30
31
32
33
35
36
37
38
39
40
41
42
43
45
45
47
#include <iostream>
using namespace std;
48
49
31
32
char letter; // Place to store input letter.
int tempIn; // Temperature to be converted
int tempout; // Converted temperature
cout <<"F: Convert from Fahrenhett to Celsius" << endl;
cout <<"C: Convert from Celsius to Fahrenheit"
<< endl;
//ADD CODE: Begin do-while loop here
cout <<"Type a C or an F, then press return."
cin>>letter;
//REPLACE CODE: use a while loop instead of an of here
}
if (letter - 'C' && letter != 'c' && letter !- 'F' && letter != "")
{
cout << "Wrong letter." << endl;
return 1;
it should loop until the user enters a valid letter
cout<<"Type an integer number, then press return." << endl;
ctn >> tempIn;
if (letter == 'C' || letter == "C")
{
terpout (9* tempIn / 5) + 32;
}
else
{
<< endl;
terpOut 5* (tempIn 32) / 9;
}
cout << "Temperature to convert: *
cout
<<"Converted temperature:
return 0;
terpin endl;
<tempout << endl;
//ADD CODE: ask user "Do you want to convert another temperature (y/n).
//ADD CODE: end do-while loop here repeat loop if user typed a 'y"
expand button
Transcribed Image Text:5 6 7 8 int main() 9 { 10 11 12 13 18 19 20 14 cout<<"Input Menu"<<endl<<endl; 15 16 17 21 22 23 25 27 28 29 30 31 32 33 35 36 37 38 39 40 41 42 43 45 45 47 #include <iostream> using namespace std; 48 49 31 32 char letter; // Place to store input letter. int tempIn; // Temperature to be converted int tempout; // Converted temperature cout <<"F: Convert from Fahrenhett to Celsius" << endl; cout <<"C: Convert from Celsius to Fahrenheit" << endl; //ADD CODE: Begin do-while loop here cout <<"Type a C or an F, then press return." cin>>letter; //REPLACE CODE: use a while loop instead of an of here } if (letter - 'C' && letter != 'c' && letter !- 'F' && letter != "") { cout << "Wrong letter." << endl; return 1; it should loop until the user enters a valid letter cout<<"Type an integer number, then press return." << endl; ctn >> tempIn; if (letter == 'C' || letter == "C") { terpout (9* tempIn / 5) + 32; } else { << endl; terpOut 5* (tempIn 32) / 9; } cout << "Temperature to convert: * cout <<"Converted temperature: return 0; terpin endl; <tempout << endl; //ADD CODE: ask user "Do you want to convert another temperature (y/n). //ADD CODE: end do-while loop here repeat loop if user typed a 'y"
Expert Solution
Check Mark
Knowledge Booster
Background pattern image
Computer Science
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
SEE MORE QUESTIONS
Recommended textbooks for you
Text book image
Database System Concepts
Computer Science
ISBN:9780078022159
Author:Abraham Silberschatz Professor, Henry F. Korth, S. Sudarshan
Publisher:McGraw-Hill Education
Text book image
Starting Out with Python (4th Edition)
Computer Science
ISBN:9780134444321
Author:Tony Gaddis
Publisher:PEARSON
Text book image
Digital Fundamentals (11th Edition)
Computer Science
ISBN:9780132737968
Author:Thomas L. Floyd
Publisher:PEARSON
Text book image
C How to Program (8th Edition)
Computer Science
ISBN:9780133976892
Author:Paul J. Deitel, Harvey Deitel
Publisher:PEARSON
Text book image
Database Systems: Design, Implementation, & Manag...
Computer Science
ISBN:9781337627900
Author:Carlos Coronel, Steven Morris
Publisher:Cengage Learning
Text book image
Programmable Logic Controllers
Computer Science
ISBN:9780073373843
Author:Frank D. Petruzella
Publisher:McGraw-Hill Education