Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- using System;
- namespace ConsoleApp1
- {
- class Program
- {
- static void Main()
- {
- double C = double.Parse(Console.ReadLine());
- double F = (C * 1.8) + 32;
- Console.WriteLine(Math.Round(F,2));
- }
- }
- }
Advertisement
Add Comment
Please, Sign In to add comment