Advertisement
desislava_topuzakova

02.Radians to Degrees

Feb 9th, 2020
217
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Java 0.33 KB | None | 0 0
  1. import java.util.Scanner;
  2.  
  3. public class RadianToDegrees_02 {
  4.     public static void main(String[] args) {
  5.         Scanner scanner = new Scanner (System.in);
  6.  
  7.         double radians = Double.parseDouble(scanner.nextLine());
  8.         double degrees = radians * 180 / Math.PI;
  9.         System.out.printf("%.0f", degrees);
  10.  
  11.  
  12.     }
  13. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement