글
프로그래머스 C# 배열 안에 있는 수를 2배씩 하기(배열의 상수 곱셈)
프로그래밍
2022. 12. 20. 15:46
728x90
SMALL
using System;
public class Solution {
public int[] solution(int[] numbers) {
int[] answer = new int[numbers.Length];
for(int i=0;i<numbers.Length;i++)
answer[i] = numbers[i] * 2;
return answer;
}
}
728x90
'프로그래밍' 카테고리의 다른 글
프로그래머스 C# 배열 뒤집기(for문 역순으로 출력, Reverse, Linq / ToArray, P, J) (0) | 2022.12.20 |
---|---|
프로그래머스 C# 머쓱이보다 키 큰 사람(array 숫자 비교하기, P, J) (0) | 2022.12.20 |
프로그래머스 C# 양꼬치(다항식 세우기, P, J) (0) | 2022.12.20 |
프로그래머스 C# 중복된 숫자 개수(array, foreach 간단한 사용법, P, J) (0) | 2022.12.20 |
프로그래머스 C# 배열의 평균값(Linq, Average 평균) (0) | 2022.12.20 |