Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- #include <stdio.h>
- int main ()
- {
- float temp ;
- printf ("Qual é a temperatura ? ");
- scanf ("%f",&temp);
- printf ("%0.2f ºC = %0.2f K\n%0.2f ºC = %0.2f ºF\n" , temp , temp + 273.15 , temp , ((temp * 9) / 5) + 32);
- return 0 ;
- }
Advertisement
Add Comment
Please, Sign In to add comment