일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
1 | 2 | 3 | 4 | 5 | 6 | 7 |
8 | 9 | 10 | 11 | 12 | 13 | 14 |
15 | 16 | 17 | 18 | 19 | 20 | 21 |
22 | 23 | 24 | 25 | 26 | 27 | 28 |
29 | 30 | 31 |
- ReactDOM.render is no longer supported in React 18. Use createRoot instead
- JS 개념
- 계산맞추기 게임
- Concurrently
- 거북이 대포 게임
- 모던자바스크립트
- Spring-Framework
- 리액트
- node.js로 로그인하기
- DB Browser
- intellij
- Colaboratory 글자 깨짐
- You are importing createRoot from "react-dom" which is not supported. You should instead import it from "react-dom/client"
- vs code 내 node
- Python
- spring-boot
- 인프런
- 타자 게임 만들기
- googleColaboratory
- Do it 자바스크립트 + 제이쿼리 입문
- react오류
- 노드에 리액트 추가하기
- 자바스크립트
- node.js 설치
- props
- 웹 게임을 만들며 배우는 리액트
- 모두의 파이썬
- react
- 따라하며 배우는 노드 리액트 기본 강의
- intllij 내 Bean을 찾지 못해서 발생하는 오류
- Today
- Total
프로그래밍 삽질 중
Method문 설명과 Overloading문 설명 및 문제 본문
※ 메소드(Method) 문 사용 시 주의할 점
- 메소드 : 매개변수를 입력 받은 후 그 매개변수를 가공 및 처리하여 반환 값으로 돌려줌
- 반환 값이 없는 경우 void형 선언
- method 형식
ex)
public static int sum (int a, int b) { // public : 접근지정자 // static : 객체 생성 없이 실행 가능
// int : 변환타입 // sum : 메소드 이름 // int a, int b : 매개변수 목록
int sum = 0;
for(int i = a; i<=b; i++) {
sum += i;
return sum;
}
※ 오버로딩(overloading) 사용 시 주의할 점
- 오버로딩 : 한 클래스 내에서 두 개 이상의 이름이 같은 메소드 작성
- 메소드 이름은 동일하나 인자의 개수나 타입이 서로 달라야 함
- 다른 조건은 다 같으나 리턴타입이 다를 경우 : 오버로딩 성립x (오류 발생)
[문제 1 - 메소드 문제]
3개의 숫자와 연산자를 입력받아 사칙연산을 수행하는 메소드 작성
계산은 입력 순으로 진행
덧셈 : add
뺄셈 : minus
곱셈 : multi
나눗셈 : divide
예) 2, 3, 5의 합은 10
2, 3, 5의 차는 -6
2, 3, 5의 곱은 30
2, 3, 5의 나누기는 0.1333
[문제 1 - 메소드 문제 답]
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
|
import java.util.Scanner;
public class Calculation {
public static void main(String[] args) {
Scanner scan = new Scanner(System.in);
int num1 = scan.nextInt();
int num2 = scan.nextInt();
int num3 = scan.nextInt();
System.out.printf("%d, %d, %d의 합은 %d", num1, num2, num3, add(num1, num2, num3));
System.out.printf("%d, %d, %d의 차은 %d", num1, num2, num3, minus(num1, num2, num3));
System.out.printf("%d, %d, %d의 곱은 %d", num1, num2, num3, multi(num1, num2, num3));
System.out.printf("%.1f, %.1f, %.1f의 나누기는 %.4f", num1, num2, num3,
divide(num1, num2, num3));
}
public static int add(int i, int j, int k) {
int add = i + j + k;
return add;
}
public static int minus(int i, int j, int k) {
int minus = i - j - k;
return minus;
}
public static int multi(int i, int j, int k) {
int multi = i * j * k;
return multi;
}
public static double divide(double i, double j, double k) {
double divide = i / j / k;
return divide;
}
}
|
cs |
[문제 2 - 오버로딩 문제]
출력값
min(2, 9) = 2
min(2.0, 9.0) = 2.0
min(2.0, 1.0, 9.0) = 1.0
[문제 2 - 오버로딩 문제 답] - public static 값 수정
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
|
public class OverloadingEx1 {
public static void main(String[] args) {
int i1 = 2, i2 = 1, i3 = 9;
double d1 = 2.0, d2 = 9.0;
System.out.printf("min(%d, %d) =%d\n", i1, i2, min(i1, i2));
System.out.printf("min(%.1f, %.1f) =%.1f\n", d1, d2, min(d1, d2));
System.out.printf("min(%d, %d, %d) = %d\n", i1, i2, i3, min(i1, i2, i3));
}
public static int min(int n1, int n2) {
int result = n1>n2 ? n2 : n1; // n1>n2가 true면 n2, false면 n1
return result;
}
public static double min(double n1, double n2) {
double result = n1>n2 ? n2 : n1;
return result;
}
public static int min(int n1, int n2, int n3) {
return min(min(n1, n2), n3);
}
}
|
cs |
'과거 프로그래밍 자료들 > 자바(Java)' 카테고리의 다른 글
이것이 자바다 5강 확인문제 9번 : Array(배열) + Scanner문제 (0) | 2021.02.25 |
---|---|
Array(배열)문 설명 및 문제 (0) | 2021.02.25 |
While문 설명 및 문제(사칙연산, while+switch) (0) | 2021.02.23 |
for문으로 합계 구하기(3의 배수, 5의 배수, 7의 배수) (0) | 2021.02.23 |
Scanner와 Switch문 설명 및 문제 (0) | 2021.02.22 |