Advertisement
desislava_topuzakova

02. Radians to Degrees

May 8th, 2022
704
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Java 0.57 KB | None | 0 0
  1. import java.util.Scanner;
  2.  
  3. public class RadiansToDegrees_02 {
  4.     public static void main(String[] args) {
  5.         Scanner scanner = new Scanner(System.in);
  6.         //1. променлива за радиани - дробно число
  7.         //2. преобразувам радиани в градуси => градуси = радиани * 180 / пи
  8.         //3. отпечатваме градуси
  9.         double radians = Double.parseDouble(scanner.nextLine());
  10.         double degrees = radians * 180 / Math.PI;
  11.         System.out.println(degrees);
  12.     }
  13. }
  14.  
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement