Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- //Task 010, Chapter 2.0
- using System;
- public class RadiansToDegrees
- {
- static void Main()
- {
- double rad = double.Parse(Console.ReadLine());
- double deg = rad * 180 / Math.PI;
- Console.WriteLine((int)(Math.Round(deg, 2)));
- }
- }
Advertisement
Add Comment
Please, Sign In to add comment