Here is what I have so far. I understand the middle portion of it. I'm just having a hard time understanding which variables to stick in the voids.
#include <iostream>
#include <iomanip>
using namespace std;
//function prototypes
void getFahrenheit();
void calcCelsius();
void displayCelsius();
int main()
{
//declare variables
int fahrenheit = 0;
double celsius = 0.0;