Computer Science, asked by ajnabi42, 10 months ago

write a program to calculate the temperature in Celsius and convert it into Fahrenheit​

Answers

Answered by shashwat67
1

Answer:

which program Java c++etcgehjsjskkssoaoal

Answered by palpurnendu
1

Answer:#include<iostream.h>

#include<conio.h>

void main()

{

double c,f;

clrscr ();

cout<<"Enter a temperature in celcius:";

cin>>c;

f=((9*c)+160)/5.00;

cout<<"The temperature in fahrenheit="<<f;

getch ();

}

Explanation:  The pogram shown is a C++ Program

Attachments:
Similar questions