Advertisement
sergAccount

Untitled

Oct 4th, 2020
938
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Java 0.85 KB | None | 0 0
  1. /*
  2.  * To change this license header, choose License Headers in Project Properties.
  3.  * To change this template file, choose Tools | Templates
  4.  * and open the template in the editor.
  5.  */
  6. package appdz2;
  7.  
  8. public class MathUtil {
  9.     //
  10.     /*
  11.     Задача 2
  12.     В проекте MyApp9  
  13.     Создать метод в классе MathUtil, который вычисляет площадь круга
  14.     в зависимости от радиуса.
  15.     Формула s = pi * r * r,
  16.     где pi - число пи (3.14)  r - радиус круга
  17.     Вызвать данный метод в методе main
  18.     и вывести полученное значение на экран  
  19.     */
  20.     public static double areaOfCircle(double r, double pi){
  21.         double result = pi * r * r;
  22.         return result;
  23.     }    
  24. }
  25.  
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement