본문 바로가기
프로그래머스/C

[프로그래머스/C]프로그래머스 Level 1 : 내적 C언어

by starfish22 2021. 11. 26.
728x90

▶문제 : 코딩 테스트 연습 - 내적 | 프로그래머스 (programmers.co.kr)

 

코딩테스트 연습 - 내적

길이가 같은 두 1차원 정수 배열 a, b가 매개변수로 주어집니다. a와 b의 내적을 return 하도록 solution 함수를 완성해주세요. 이때, a와 b의 내적은 a[0]*b[0] + a[1]*b[1] + ... + a[n-1]*b[n-1] 입니다. (n은 a, b의

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

댓글