ফারেনহাইটে তাপমাত্রা 'n' দিয়ে দেওয়া এবং চ্যালেঞ্জ হল প্রদত্ত তাপমাত্রাকে সেলসিয়াসে রূপান্তর করা এবং এটি প্রদর্শন করা।
উদাহরণ
Input 1-: 132.00 Output -: after converting fahrenheit 132.00 to celsius 55.56 Input 2-: 456.10 Output -: after converting fahrenheit 456.10 to celsius 235.61
তাপমাত্রা ফারেনহাইট থেকে সেলসিয়াসে রূপান্তরের জন্য, একটি সূত্র রয়েছে যা নীচে দেওয়া হল
T(°C) =(T(°F) - 32) × 5/9
যেখানে, T(°C) হল সেলসিয়াসে তাপমাত্রা এবং T(°F) হল ফারেনহাইটের তাপমাত্রা
নিচে ব্যবহৃত পদ্ধতিটি নিম্নরূপ −
- একটি ফ্লোট ভেরিয়েবলে ইনপুট তাপমাত্রা ধরা যাক ফারেনহাইট
- তাপমাত্রাকে সেলসিয়াসে রূপান্তর করতে সূত্রটি প্রয়োগ করুন
- সেলসিয়াস মুদ্রণ করুন
অ্যালগরিদম
Start Step 1-> Declare function to convert Fahrenheit to Celsius float convert(float fahrenheit) declare float Celsius Set celsius = (fahrenheit - 32) * 5 / 9 return Celsius step 2-> In main() declare and set float fahrenheit = 132.00 Call convert(fahrenheit) Stop
উদাহরণ
#include <stdio.h> //convert fahrenheit to celsius float convert(float fahrenheit) { float celsius; celsius = (fahrenheit - 32) * 5 / 9; return celsius; } int main() { float fahrenheit = 132.00; printf("after converting fahrenheit %.2f to celsius %.2f ",fahrenheit,convert(fahrenheit)); return 0; }
আউটপুট
যদি আমরা উপরের কোডটি চালাই তবে এটি নিম্নলিখিত আউটপুট তৈরি করবে
after converting fahrenheit 132.00 to celsius 55.56