Home
Suva Programming
Home
SAP
Home
CPP
cpp program to convert temperature in fahrenheit to celsius
cpp program to convert temperature in fahrenheit to celsius
Suva Programming
Tuesday, January 28, 2020
Source Code:
#include<iostream>
using namespace std;
int main()
{
float f,c;
cout<<"Enter the temperature: ";
cin>>f;
c=(f-32)/1.8;
cout<<"The temperature in celsius: "<<c;
return 0;
}
Program Output:
Post a Comment
0 Comments
Categories
CPP
(64)
Java
(4)
Java Virtual Machine
(1)
SAP
(58)
Shell Programming
(4)
Popular Posts
CPP program to create a class tourist and calculate the charges of touring
Tuesday, March 10, 2020
Java Program to implement an interface structure
Monday, January 25, 2021
A simple Java program with multiple statements
Sunday, January 10, 2021
Contact Form
Name
Email
*
Message
*
0 Comments