목록Java/23_1 소프트웨어프로젝트 (7)
archive

1. Take a point (x, y) representing the center of a circle and its radius as a real number, and another point (a, b) as a real number, and determine if it is inside the circle and print it out. package march14; import java.util.Scanner; public class project1 { public static void main(String[] args) { // TODO Auto-generated method stub Scanner input = new Scanner(System.in); double x, y, r, a, b;..
Java/23_1 소프트웨어프로젝트
2023. 3. 18. 21:21