PS/etc
-
chapter1) 두 수의 차 구하기PS/etc 2020. 7. 6. 20:44
public class Q10 { // b-a = ? public static void main(String[] args) { Scanner scanner = new Scanner(System.in); System.out.println("두 수의 차를 구합니다."); System.out.print("a : "); int a = scanner.nextInt(); int b; do { System.out.print("b : "); b = scanner.nextInt(); } while (b a) break; System.out.println("a보다 큰 값을 입력하세요!"); } System.out.println("b - a는 " + (b - a) + "입니다."); } } (2) ※참조 Do it! 자료구..
-
chapter1) 두 정수 사이의 합 구하기PS/etc 2020. 7. 6. 20:01
public class Q9 { // 정수 a,b를 포함하여 그 사이의 모든 정수의 합 구하기 public static void main(String[] args) { Scanner scanner = new Scanner(System.in); System.out.println("두 수를 입력하세요."); System.out.print("a : "); int a = scanner.nextInt(); System.out.print("b : "); int b = scanner.nextInt(); int sum = sumof(a, b); System.out.println("sum : " + sum); } static int sumof(int a, int b) { int sum = 0; int max = 0; i..
-