Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- //Task 009, Chapter 2.0
- using System;
- public class CelsiusToFahrenheit
- {
- static void Main()
- {
- double celsius = double.Parse(Console.ReadLine());
- double fahrenheit = celsius * 9 / 5 + 32;
- Console.WriteLine(Math.Round(fahrenheit, 2));
- }
- }
Advertisement
Add Comment
Please, Sign In to add comment