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
SAP Program to innerjoin two database tables LIKP and LIPS
Sunday, February 11, 2024
SAP Program to use all four control break statement in a program
Friday, February 23, 2024
Simple SAP Program to store records in an internal table
Friday, March 28, 2025
Contact Form
Name
Email
*
Message
*
0 Comments