https://school.programmers.co.kr/learn/courses/30/lessons/12944 class Solution { public double solution(int[] arr) { double answer = 0; for (int j : arr) { answer += j; } return answer / arr.length; } }
Java
https://school.programmers.co.kr/learn/courses/30/lessons/12928 class Solution { public int solution(int n) { int answer = 0; for(int i = 1; i
https://school.programmers.co.kr/learn/courses/30/lessons/120910 class Solution { public int solution(int n, int t) { int answer = n; for (int i = 1; i
https://school.programmers.co.kr/learn/courses/30/lessons/120903 class Solution { public int solution(String[] s1, String[] s2) { int answer = 0; for(int i = 0; i < s2.length; i++){ for(int j = 0; j < s1.length; j++){ if(s2[i].equals(s1[j])){ // 문자열이 같은지 비교할 때는 .equals() 를 사용 answer++; } } } return answer; } }
https://school.programmers.co.kr/learn/courses/30/lessons/120909 class Solution { public int solution(int n) { int answer = 0; for(int i = 1; i
https://school.programmers.co.kr/learn/courses/30/lessons/120836 class Solution { public int solution(int n) { int answer = 0; for(int i = 1; i
https://www.acmicpc.net/problem/11021 11021번: A+B - 7 각 테스트 케이스마다 "Case #x: "를 출력한 다음, A+B를 출력한다. 테스트 케이스 번호는 1부터 시작한다. www.acmicpc.net import java.util.Scanner; public class Main { public static void main(String[] args) { Scanner sc = new Scanner(System.in); int t = sc.nextInt(); int[] arr = new int[t]; // t만큼 배열의 크기를 지정 int i = 0; while (i < t) { // t만큼 반복 int a = sc.nextInt(); int b = sc.next..