Aliendreamer

farenhait

Feb 4th, 2018
159
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C# 0.27 KB | None | 0 0
  1. using System;
  2.  
  3.  
  4. namespace ConsoleApp1
  5. {
  6.     class Program
  7.     {
  8.         static void Main()
  9.         {
  10.             double C = double.Parse(Console.ReadLine());
  11.             double F = (C * 1.8) + 32;
  12.             Console.WriteLine(Math.Round(F,2));
  13.         }
  14.     }
  15. }
Advertisement
Add Comment
Please, Sign In to add comment