The world’s Largest Sharp Brain Virtual Experts Marketplace Just a click Away
Levels Tought:
Elementary,Middle School,High School,College,University,PHD
| Teaching Since: | Apr 2017 |
| Last Sign in: | 103 Weeks Ago, 2 Days Ago |
| Questions Answered: | 4870 |
| Tutorials Posted: | 4863 |
MBA IT, Mater in Science and Technology
Devry
Jul-1996 - Jul-2000
Professor
Devry University
Mar-2010 - Oct-2016
 in C++ programming and more information in the attach file.
Â
2. Lab2B – While Loops2.1 Create Lab2B.cppWhile LoopsLab2B.cpp (also shown below) has the beginnings of a program designed to take input from thekeyboard ortext flesin degrees Celsius, and then convert them to degrees Fahrenheit, and write outthe results to a table. Start with the program Lab2B.cpp.Then, build the program by adding the loop in the indicated space, and also add any code where it says[Add code here].// Lab2B.cpp// <Your Name>// <Your Sec±on Name >//<Your ID>// This program will read in from a ²le a series of numbers in degrees// Celsius, convert them to degree Fahrenheit and print out a table of// those values.#include <iostream>#include <fstream>//for Fle open#include <iomanip>// for format number numbersusing namespace std;int main ( ){// Declare variablesifstreamOpenFile("Lab2Bdata.txt");doubledegreeCelsius;
Attachments: