0
a program to convert temperature in degrees Fahrenheit to degrees Celsius. The equation is: Celsius = 5.0/9.0(Fahrenheit –32.0)
How to solve it ayone can help me pls
6 odpowiedzi
+ 1
#include <stdio.h>
char* string(int a);
int main(){
float f=0;
scanf("%f",&f);
f=((f-32)*5)/9;
printf("%f",f);
return 0;}
/*(32 °F − 32) × 5/9 = 0 °C*/
+ 2
Show me you tried please
+ 1
Izzat Idham
You can find many more examples if you just search the Code Playground 👍
+ 1
Ipang thanks broo
0
Remember to learn you have to try
0
Daniel Briceño thanks broo