Java

https://www.acmicpc.net/problem/14681 14681번: 사분면 고르기 점 (x, y)의 사분면 번호(1, 2, 3, 4 중 하나)를 출력한다. www.acmicpc.net import java.util.Scanner; public class Main { public static void main(String[] args) { Scanner sc = new Scanner(System.in); int x = sc.nextInt(); int y = sc.nextInt(); if (x > 0 && y > 0){ //1사분면 System.out.println("1"); } else if (x 0){ //2사분면 System.out.println("2"); } else..
https://www.acmicpc.net/problem/9498 9498번: 시험 성적 시험 점수를 입력받아 90 ~ 100점은 A, 80 ~ 89점은 B, 70 ~ 79점은 C, 60 ~ 69점은 D, 나머지 점수는 F를 출력하는 프로그램을 작성하시오. www.acmicpc.net import java.util.Scanner; public class Main { public static void main(String[] args) { Scanner in = new Scanner(System.in); int A = in.nextInt(); if(A >= 90){ System.out.println("A"); } else if(A >= 80){ System.out.println("B"); } else if..
https://www.acmicpc.net/problem/1330 1330번: 두 수 비교하기 두 정수 A와 B가 주어졌을 때, A와 B를 비교하는 프로그램을 작성하시오. www.acmicpc.net import java.util.Scanner; public class Main { public static void main(String[] args) { Scanner in = new Scanner(System.in); int A = in.nextInt(); int B = in.nextInt(); if(A>B){ System.out.println(">"); // A가 B보다 큰 경우 } else if(A
https://www.acmicpc.net/problem/2753 2753번: 윤년 연도가 주어졌을 때, 윤년이면 1, 아니면 0을 출력하는 프로그램을 작성하시오. 윤년은 연도가 4의 배수이면서, 100의 배수가 아닐 때 또는 400의 배수일 때이다. 예를 들어, 2012년은 4의 배수이면서 www.acmicpc.net import java.util.Scanner; public class Main { public static void main(String[] args) { Scanner sc = new Scanner(System.in); int year = sc.nextInt(); // 연도를 입력받음 if(year % 4 == 0 && year % 100 != 0){ // 4의 배수이고 100의 배수가..
https://school.programmers.co.kr/learn/courses/30/lessons/120825 class Solution { public String solution(String my_string, int n) { String answer = ""; for(int i=0; i < my_string.length(); i++){ // 문자열의 길이만큼 아래 for 문을 반복 for(int j=0; j
https://school.programmers.co.kr/learn/courses/30/lessons/120585 class Solution { public int solution(int[] array, int height) { int answer = 0; for(int i=0; i height){ //배열의 i번째 요소가 height(머쓱이 키)보다 크면 answer++; //answer의 값을 1씩 증가 } } return answer; } }
https://school.programmers.co.kr/learn/courses/30/lessons/120826 class Solution { public String solution(String my_string, String letter) { String answer = ""; answer = my_string.replace(letter, ""); //letter에 들어있는 문자를 ""로 치환하여 제거 return answer; } } 문자열에서 특정 문자를 제거하기 위해서는 .replace(지우고싶은 문자, "") 를 해주면 된다!
daxx0ne
'Java' 태그의 글 목록 (16 Page)