728x90
▶문제 : 코딩 테스트 연습 - 내적 | 프로그래머스 (programmers.co.kr)
▶코드 작성
#include <stdio.h>
#include <stdbool.h>
#include <stdlib.h>
// a_len은 배열 a의 길이입니다.
// b_len은 배열 b의 길이입니다.
int solution(int a[], size_t a_len, int b[], size_t b_len)
{
int answer = 0;
int i;
for (i = 0; i < a_len; i++)//배열 길이만큼 i++
{
answer += a[i] * b[i];//곱한 값을 answer변수에 더해감
}
return answer;
}
▶해석
주어진 배열 a, b의 길이만큼 반복문으로 i++하여 answer변수에 더하고 반환하였음.
728x90
'프로그래머스 > C' 카테고리의 다른 글
프로그래머스 Level 1 : 약수의 개수와 덧셈 C언어 (0) | 2021.11.26 |
---|---|
프로그래머스 Level 1 : 음양 더하기 C언어 (0) | 2021.11.26 |
프로그래머스 Level 1 : 소수만들기 C언어 (0) | 2021.11.26 |
프로그래머스 Level 1 : 숫자 문자열과 영단어 C언어 (0) | 2021.11.19 |
프로그래머스 Level 1 : 로또의 최고 순위와 최저 순위 C언어 (0) | 2021.11.19 |
댓글