Txerrinko

Temperatura Celsius

Jul 26th, 2011
133
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C 0.32 KB | None | 0 0
  1. #include <stdio.h>
  2. #include <stdlib.h>
  3.  
  4.  
  5.  
  6. int main(int argc, char *argv[])
  7. {
  8.    double c ,f ;
  9.    
  10.    printf("Introduce la temperatura en Celsius \n");
  11.    scanf("%lf",&c);
  12.    
  13.    f=(9/5)*c +32 ;
  14.    
  15.    printf("La temperatura en F son : %lf \n", f);
  16.    
  17.  
  18.  
  19.  
  20.  
  21.  
  22.  
  23.   system("PAUSE"); 
  24.   return 0;
  25. }
Advertisement
Add Comment
Please, Sign In to add comment