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