This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| /* | |
| * Домашняя работа 3 Уровень 2 | |
| * Задание 1 | |
| * Есть круг с центром в начале координат и радиусом 4. Пользователь | |
| * вводит с клавиатуры координаты точки x и y. Написать программу которая | |
| * определит лежит ли эта точка внутри круга или нет. | |
| */ | |
| package com.gmail.slartua; |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| /* | |
| * Домашняя работа 3 | |
| * Задание 1 | |
| * Написать программу которая считает 4 числа c клавиатуры и выведет на | |
| * экран самое большое из них. | |
| */ | |
| package com.gmail.slartua; | |
| import java.util.Scanner; |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| /* | |
| * Домашняя работа 2 | |
| * Задание 1 | |
| * Написать программу которая считывает 5-и значное число с | |
| * клавиатуры и выводит цифры из которого оно состоит. | |
| */ | |
| package com.gmail.slartua; | |
| import java.util.Scanner; |
NewerOlder