Advertisement
IvanITD

02.RadiansToDegrees

Jan 14th, 2024
519
0
Never
1
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C# 0.13 KB | Source Code | 0 0
  1. double radians = double.Parse(Console.ReadLine());
  2.  
  3. double degrees = (radians * 180) / Math.PI;
  4.  
  5. Console.WriteLine(degrees);
Tags: C#
Advertisement
Comments
Add Comment
Please, Sign In to add comment
Advertisement