Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- /*
- * To change this license header, choose License Headers in Project Properties.
- * To change this template file, choose Tools | Templates
- * and open the template in the editor.
- */
- package ja9;
- /**
- *
- * @author Administrator
- */
- public class JA9 {
- // Определить метод который находит площадь круга в зависимоти от радиуса
- // Метод должен зависеть от параметров и метод должен возвращать значение
- // Метод должен возвращать значение типа double
- // S(r) = 3.14 * r * r;
- // return - оператор управления - прекращает работу метода и возвращает значение в соотв с типом
- // возвращаемого значения метода
- public static double areaOfCircle(double r){
- //double result = 3.14 * r * r;
- //return result;
- return (3.14 * r * r);
- }
- /*
- Выводит на экран все целые числа от x1 до x2 включительно
- */
- // Пример: x1 = 1 x2 = 3
- // Результат: 1 2 3
- // метод который не возвращает значение
- // используем тип void в качетсве возвращаемого значения данного метода
- public static void printNumbers(int x1, int x2){
- for(int i=x1; i<=x2; i++){
- System.out.print(i);
- System.out.print(" ");
- }
- }
- public static void main(String[] args) {
- // TODO code application logic here
- // вызвать метод и вывести полученное значение на экран для r = 10.10
- double res = areaOfCircle(10.10);
- System.out.println(res);
- res = areaOfCircle(10.10);
- System.out.println(res);
- for (int i = 0; i < 10; i++) {
- res = areaOfCircle(10.10);
- }
- // вызываем метод printNumbers
- System.out.println("Вывод чисел от x1 до x2");
- printNumbers(5, 20);
- }
- }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement