Algorithm/Programmers75 프로그래머스 ) 문자열 출력하기 [JAVA/자바] - 오늘의 TIL https://school.programmers.co.kr/learn/courses/30/lessons/181952 프로그래머스 코드 중심의 개발자 채용. 스택 기반의 포지션 매칭. 프로그래머스의 개발자 맞춤형 프로필을 등록하고, 나와 기술 궁합이 잘 맞는 기업들을 매칭 받으세요. programmers.co.kr 👇소스 코드 import java.util.Scanner; public class Solution { public static void main(String[] args) { Scanner sc = new Scanner(System.in); String a = sc.next(); System.out.println(a); } } 간단하게 입력한 문자열을 출력하면 되는 문제이다! 2023. 7. 5. 프로그래머스 ) 짝수는 싫어요 [JAVA/자바] - 오늘의 TIL https://school.programmers.co.kr/learn/courses/30/lessons/120813 프로그래머스 코드 중심의 개발자 채용. 스택 기반의 포지션 매칭. 프로그래머스의 개발자 맞춤형 프로필을 등록하고, 나와 기술 궁합이 잘 맞는 기업들을 매칭 받으세요. programmers.co.kr 👇소스 코드 class Solution { public int[] solution(int n) { int[] answer = new int[(n+1)/2]; int k = 0; for(int i =1;i 2023. 6. 29. 프로그래머스 ) 짝수의 합 [JAVA/자바] - 오늘의 TIL https://school.programmers.co.kr/learn/courses/30/lessons/120831?language=java 프로그래머스 코드 중심의 개발자 채용. 스택 기반의 포지션 매칭. 프로그래머스의 개발자 맞춤형 프로필을 등록하고, 나와 기술 궁합이 잘 맞는 기업들을 매칭 받으세요. programmers.co.kr 👇소스 코드 class Solution { public int solution(int n) { int answer = 0; for(int i=0; i 2023. 6. 29. 이전 1 ··· 16 17 18 19 다음