Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- using System;
- using System.Collections.Generic;
- using System.Linq;
- using System.Text;
- using System.Threading.Tasks;
- namespace Celsius_to_Fahrenheit
- {
- class Program
- {
- static void Main(string[] args)
- {
- double C = Double.Parse(Console.ReadLine());
- var F = (C * 1.8 + 32);
- Math.Round(F, 2);
- Console.WriteLine("F=" +F);
- }
- }
- }
Advertisement
Add Comment
Please, Sign In to add comment