반응형
Notice
Recent Posts
Recent Comments
Link
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
1 | 2 | 3 | 4 | 5 | 6 | 7 |
8 | 9 | 10 | 11 | 12 | 13 | 14 |
15 | 16 | 17 | 18 | 19 | 20 | 21 |
22 | 23 | 24 | 25 | 26 | 27 | 28 |
29 | 30 | 31 |
Tags
- AtomEditor
- mysql
- Node.js Express
- 리액트
- 자바 인터뷰
- 백준
- 맥북 사용법
- 백준 알고리즘
- jsx 문법
- react jsx
- 알고리즘
- 자바 기술면접
- 자바 면접
- 생활코딩
- React props
- 맥북 유용한 앱
- Express middleware
- tech interview
- 기술면접
- node.js
- React
- Java tech interview
- 백준 단계별로 풀어보기
- 맥북 초보
- 맥북 팁
- react state
- 자바 개발자
- 자바 영어면접
- 맥북 필수 앱
- 아톰에디터
Archives
- Today
- Total
song.log
[Algorithm] 백준 단계별로 풀어보기 - 4.while문 본문
반응형
10951. A+B-4 두 정수 A와 B를 입력받은 다음, A+B를 출력하는 프로그램을 작성하시오.
import java.util.Scanner;
public class Main{
public static void main(String[] args) {
Scanner scan = new Scanner(System.in);
while(scan.hasNextInt()) {
int a = scan.nextInt();
int b = scan.nextInt();
System.out.println(a+b);
}
}
}
1110. 더하기 사이클 0보다 크거나 같고, 99보다 작거나 같은 정수가 주어질 때 다음과 같은 연산을 할 수 있다. 먼저 주어진 수가 10보다 작다면 앞에 0을 붙여 두 자리 수로 만들고, 각 자리의 숫자를 더한다. 그 다음, 주어진 수의 가장 오른쪽 자리 수와 앞에서 구한 합의 가장 오른쪽 자리 수를 이어 붙이면 새로운 수를 만들 수 있다.
N이 주어졌을 때, N의 사이클의 길이를 구하는 프로그램을 작성하시오.
import java.util.Scanner;
public class Main{
public static void main(String[] args) {
Scanner scan = new Scanner(System.in);
int n = scan.nextInt();
int num1 = 0;
int num2 = 0;
if(n/10!=0) {
num1 = n/10;
num2 = n%10;
}else {
num1 = 0;
num2 = n;
}
int result = num1+num2;
int cycle = 0;
while(true) {
num1 = num2;
num2 = result%10;
result = num1+num2;
cycle++;
if(num1==n/10 && num2==n%10) {
System.out.println(cycle);
break;
}
}
}
}
반응형
'StudyLog > Algorithm' 카테고리의 다른 글
[Algorithm] 백준 단계별로 풀어보기 - 5. 1차원 배열 (0) | 2019.12.21 |
---|---|
[Algorithm] 백준 단계별로 풀어보기 - 3.for문 (0) | 2019.12.20 |
[Algorithm] 백준 단계별로 풀어보기 - 2.if문 (0) | 2019.12.19 |
[Algorithm] 백준 단계별로 풀어보기 - 1.입/출력 받아보기 (0) | 2019.12.18 |
Comments