" . • I #include using namespace std; int main() ( char letter; // Place to store input letter int tempIn; // Temperature to be converted int tempout; // Converted temperature cout Input Menu cout <<"F Convert from Fahrenheit to Celstus" e endl; cout<<"C Convert from Celstus to Fahrenhette endl; endte endl; //ADO CODE: Begin do-while loop here cout <<"Type a C or an F, then press return." << endl; cin letter; //REPLACE CODE: use a while loop instead of an Lf here It should loop until the user enters a valid letter if (letter - 'C' && Letter I-'c' && Letter Fletter - ¹) ( } cout << "Wrong letter. e endl; return 1; cout <<"Type an integer number, then press return." << endl; ctn tempIn; tr (letter - 'C' || letter - 'C') ( terpout (9 tempIn / 5) + 32; } else ( terpOut 5 (tempIn 32) / 9; } cout<<"Temperature to converti cout"Converted temperature: terpin endl; terpoute endl; //ADD CODE: ask user "Do you want to convert another temperature (y/n). return 0; //ADD CODE: end do-while loop here repeat loop if user typed a 'y'

Database System Concepts
7th Edition
ISBN:9780078022159
Author:Abraham Silberschatz Professor, Henry F. Korth, S. Sudarshan
Publisher:Abraham Silberschatz Professor, Henry F. Korth, S. Sudarshan
Chapter1: Introduction
Section: Chapter Questions
Problem 1PE
icon
Related questions
Question
100%

can you please add in a code where needed?also this is a  c++ code and please can you add professional comments // in it

 

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"
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
steps

Step by step

Solved in 3 steps

Blurred answer
Knowledge Booster
Types of Loop
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
Database System Concepts
Database System Concepts
Computer Science
ISBN:
9780078022159
Author:
Abraham Silberschatz Professor, Henry F. Korth, S. Sudarshan
Publisher:
McGraw-Hill Education
Starting Out with Python (4th Edition)
Starting Out with Python (4th Edition)
Computer Science
ISBN:
9780134444321
Author:
Tony Gaddis
Publisher:
PEARSON
Digital Fundamentals (11th Edition)
Digital Fundamentals (11th Edition)
Computer Science
ISBN:
9780132737968
Author:
Thomas L. Floyd
Publisher:
PEARSON
C How to Program (8th Edition)
C How to Program (8th Edition)
Computer Science
ISBN:
9780133976892
Author:
Paul J. Deitel, Harvey Deitel
Publisher:
PEARSON
Database Systems: Design, Implementation, & Manag…
Database Systems: Design, Implementation, & Manag…
Computer Science
ISBN:
9781337627900
Author:
Carlos Coronel, Steven Morris
Publisher:
Cengage Learning
Programmable Logic Controllers
Programmable Logic Controllers
Computer Science
ISBN:
9780073373843
Author:
Frank D. Petruzella
Publisher:
McGraw-Hill Education