PS
-
chapter1) 양의 정수 자릿수 구하기PS/etc 2020. 7. 6. 20:57
public class Q11 { // 양의 정수를 입력하고 자릿수를 출력하는 프로그램 public static void main(String[] args) { Scanner scanner = new Scanner(System.in); System.out.println("자릿수를 구할 양의 정수를 입력하세요."); int a; do { System.out.print("a : "); a = scanner.nextInt(); } while (a 0) { a /= 10; num++; } System.out.println("자릿수 : " + num); } } - 풀다가 모르겠어서 답 봄 ※참조 Do it! 자료구조와 함께 배우는 알고리즘 입문
-
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..
-