Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- #include <stdio.h>
- #include <stdlib.h>
- int main(int argc, char *argv[])
- {
- double c ,f ;
- printf("Introduce la temperatura en Celsius \n");
- scanf("%lf",&c);
- f=(9/5)*c +32 ;
- printf("La temperatura en F son : %lf \n", f);
- system("PAUSE");
- return 0;
- }
Advertisement
Add Comment
Please, Sign In to add comment