no image
자바 [Programmers] 1단계 - 짝수와 홀수
class Solution { public String solution(int num) { return (num % 2 == 0) ? "Even" : "Odd"; } } 아주 기초적인 문제..
2024.02.18
no image
자바 [Programmers] 1단계 - x만큼 간격이 있는 n개의 숫자
class Solution { public long[] solution(int x, int n) { long[] answer = new long[n]; for(int i=0; i
2024.02.18
no image
자바 [Programmers] 1단계 - 약수의 합
class Solution { public int solution(int n) { int answer = 0; for(int i=1; i
2024.02.18
no image
자바 [JAVA] - 문자열을 정수로 변환
문자열을 정수로 변환할 수 있는 함수를 제공합니다. Integer.parseInt() 는 int형으로 반환합니다. Integer.valueOf() 는 Integer을 반환합니다. public class test { public static void main(String[] args) { String str1 = "12345"; String str2 = "-12345"; System.out.println("ParseInt : " + Integer.parseInt(str1)); System.out.println("ValueOf : " + Integer.valueOf(str2)); } }
2024.02.15
no image
자바 [JAVA] - 문자열 대소문자로 변환하는 방법 toLowerCase, toUpperCase
String 클래스에서는 문자열을 대소문자로 변환할 수 있는 함수를 제공합니다. toLowerCase 는 모든 문자열을 소문자로 변환합니다. toUpperCase 는 모든 문자열을 대문자로 변환합니다. public class String_toCaseTest { public static void main(String[] args) { // TODO Auto-generated method stub String str = "Hello DongYeop"; String substr1 = str.toLowerCase(); String substr2 = str.toUpperCase(); System.out.println(substr1); System.out.println(substr2); } }
2024.02.14
no image
자바 [JAVA] - 백준 1436번
package Solved.Class2;import java.util.*;public class Baek1436 { public static void main(String[] args) { Scanner sc = new Scanner(System.in); int count = 1; int num = 666; int n = sc.nextInt(); while(count != n){ num++; if(String.valueOf(num).contains("666")) count++; } System.out.println(num); sc.cl..
2024.02.14
no image
자바 [JAVA] - 백준 1259번
import java.util.*;public class Baek1259 { public static void main(String[] args) { Scanner sc = new Scanner(System.in); String str = ""; while(true){ boolean check = true; str = sc.next(); if(str.equals("0")){ break; } for(int i=0; i입력을 String 타입으로 받고, 팰린드롬수인지 확인을 위해 boolean 변수 추가0 입력시 종료입력받은 값의 절반만큼 비..
2024.02.14
자바 [JAVA] - Scanner 클래스와 입력
2024.02.13