xxxxxxxxxx
cels = (fahr - 32.0) * 5.0/9.0; //Fahr to cels
fahr = (cels * 9.0/5.0) + 32.0; //Cels to fahr
xxxxxxxxxx
float cel;
printf("Enter celsius value: ");
scanf("%f", &cel);
printf("Fahrenhit value is: %f", cel * (9 / 5) + 32);
xxxxxxxxxx
cels = (fahr-32.0) * 5.0/9.0 //fahr to cels
fahr = (cels * 9.0/5.0) + 32.0 //cels to fahr
import java .util .scanner ;
public class main {
public static void main (string args [J) {
scanner sc=new scanner (system,in);
int far = sc.nextInt ();
int cel = (far - 32) * 5/9
system .out printf ("%d fahreneheit is %d celsius , far , cel);
}
}