Answer:
#include <iostream>
using namespace std;
int main()
{
float celsius;
cout<<"Enter the temperature in Celsius: ";
cin>>celsius;
float Fahrenheit = 1.8 * celsius + 32;
cout<<"The temperature in Fahrenheit is: "<<Fahrenheit<<endl;
}
Explanation:
first include the library iostream in the c++ programming.
Then, create the main function and declare the variable celsius.
cout is used to print the message on the screen.
cin is used to store the user enter value in the variable.
then, apply the formula for calculating the temperature in Fahrenheit
and store the result in the variable.
Finally, print the result.
Answer:
Naphtha is used to dilute heavy crude oil to reduce its viscosity and enable/facilitate transport; undiluted heavy crude cannot normally be transported by pipeline, and may also be difficult to pump onto oil tankers. Other common dilutants include natural-gas condensate, and light crude.
Answer:
Begin (Program Start)
Ask for BASIC SALARY from user!
Get BASIC SALARY.
Ask for TRANSPORT (FEE) from user!
Get TRANSPORT (FEE) .
Ask for MEDICAL (FEE) from user!
Get MEDICAL (FEE) .
Ask for HOUSING (FEE) from user!
Get HOUSING (FEE) .
Ask for DEDUCTION from user!
Get DEDUCTION.
NET SALARY = basic salary + transport + medical + housing - deduction
Calculate NET SALARY and DISPLAY it to the user.
End