Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- using System;
- namespace RadiansToDegrees
- {
- class Program
- {
- static void Main()
- {
- double radians = double.Parse(Console.ReadLine());
- double degrees = radians * 180 / Math.PI;
- Console.WriteLine(degrees);
- }
- }
Add Comment
Please, Sign In to add comment