+ 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
14 RĂ©ponses
+ 9
Joyce
I recommend you to complete your C# course then you can solve this.
Happy codingđ
+ 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
+ 7
It is no different than performing the conversion mathematically.
+ 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();
}
}
}
+ 3
Okay thankyou so muchâ€
+ 2
I mean what's the input?
+ 2
I didn't get it I'm sorry I'm to slow learner I'm just a beginner:(
+ 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.
+ 2
Sml
+ 1
https://code.sololearn.com/cmSTNBDQtyaM/?ref=app
Try this code!
+ 1
go for python many problems one solution âïž
0
What if I'm only using phone for creating program how
0
It's not gonna work if I'll use phone
0
It would be F=(C*9)/5 and not F=(C*5)/9.
ăSampriyaă
Sergey