Advertisement
Sabbir-bin

cheak temp

Dec 6th, 2019
153
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C 0.21 KB | None | 0 0
  1. #include<stdio.h>
  2.  
  3. int main()
  4. {
  5.   int f, c;
  6.   printf("Enter the celcious number:");
  7.   scanf("%d", &c);
  8.   f=9*(c/5)+32;
  9.  
  10.   printf("\nhis is the farent. temp= %d deg", f);
  11.  
  12. printf("\n\n");
  13.   return 0;
  14. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement