How to create program that will convert degrees Celsius to degrees Fahrenheit wherein, | Sololearn: Learn to code for FREE!
New course! Every coder should learn Generative AI!
Try a free lesson
+ 8

How to create program that will convert degrees Celsius to degrees Fahrenheit wherein,

The temperature in degrees Fahrenheit is (F) is equal to the temperature in degrees Celsius (C) times 9/5 plus 32

7th Nov 2020, 10:52 AM
Joyce
Joyce - avatar
14 Answers
+ 9
Joyce I recommend you to complete your C# course then you can solve this. Happy coding😊
7th Nov 2020, 11:05 AM
ツSampriya😘ツ
ツSampriya😘ツ - avatar
+ 8
If you know formula then you can write the code. Input C Perform calculation F = (C * 9)/5 + 32 Then output F Edit: C is celcius F is Fahrenheit
7th Nov 2020, 10:58 AM
ツSampriya😘ツ
ツSampriya😘ツ - avatar
+ 7
It is no different than performing the conversion mathematically.
7th Nov 2020, 10:56 AM
Arsenic
Arsenic - avatar
+ 4
Convert Celcius to Fahrenheit using System; using System.Collections.Generic; using System.Linq; using System.Text; namespace Demo { class MyApplication { static void Main(string[] args) { double fahrenheit; double celsius = 36; Console.WriteLine("Celsius: " + celsius); fahrenheit = (celsius * 9) / 5 + 32; Console.WriteLine("Fahrenheit: " + fahrenheit); Console.ReadLine(); } } }
9th Nov 2020, 10:02 AM
Noor Muhammad
Noor Muhammad - avatar
+ 3
Okay thankyou so much❤
7th Nov 2020, 1:55 PM
Joyce
Joyce - avatar
+ 2
I mean what's the input?
7th Nov 2020, 10:58 AM
Joyce
Joyce - avatar
+ 2
I didn't get it I'm sorry I'm to slow learner I'm just a beginner:(
7th Nov 2020, 11:01 AM
Joyce
Joyce - avatar
+ 2
to do this, all you’ll need to do is learn the following concepts arithmetic operators assignment operators functions & function calls parameters. learn them very well and you’ll be able to solve this problem.
7th Nov 2020, 4:58 PM
Logomonic Learning
Logomonic Learning - avatar
+ 2
Sml
9th Nov 2020, 4:59 AM
Joyce
Joyce - avatar
9th Nov 2020, 7:11 AM
Sonia Thappar
+ 1
go for python many problems one solution ✌️
9th Nov 2020, 8:17 AM
Oxi
Oxi - avatar
0
What if I'm only using phone for creating program how
7th Nov 2020, 1:40 PM
Joyce
Joyce - avatar
0
It's not gonna work if I'll use phone
7th Nov 2020, 1:41 PM
Joyce
Joyce - avatar
0
It would be F=(C*9)/5 and not F=(C*5)/9. ツSampriyaツ Sergey
9th Nov 2020, 7:15 AM
Sonia Thappar