[프로그래머스] 내적 java 자바
주어진 조건을 반복문으로 해결한다. package programmers; public class Dot_Product { public static void main(String[] args) { Solution10 s = new Solution10(); int[] a = {1,2,3,4}; int[] b = {-3,-1,0,2}; s.solution(a, b); } } class Solution10 { public int solution(int[] a, int[] b) { int sum = 0; for(int i = 0; i