[백준 알고리즘] 1001번 / A-B
Q. 두 수 A와 B를 입력받은 다음, A-B를 출력하는 프로그램을 작성하시오. 1 2 3 4 5 6 7 8 9 10 11 import java.util.Scanner; public class Main { public static void main(String[] args) { Scanner sc = new Scanner(System.in); int a = sc.nextInt(); int b = sc.nextInt(); System.out.println(a-b); } } Colored by Color Scripter cs문제 풀기 : https://www.acmicpc.net/problem/10011001번: A-B1001번 제출 맞은 사람 숏코딩 풀이 풀이 작성 풀이 요청 재채점/수정 문제 추천 채점 ..
2018.05.27