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 |
Tags
- 웹
- algorithm
- 백준
- 후기
- 중소기업면접
- 웹프로그래밍
- 코딩
- 연결요소의개수
- 한국재정정보원
- CSS
- 프로그래밍언어
- 인강
- 공부
- 프로그래머스
- 필기후기
- BOJ
- 정수내림차순으로배치하기
- 건보필기
- 농은면접
- 프로그래밍
- HTML
- 확인문제
- Linux
- 부스트코스
- 수박수박수박수박수?
- 알고리즘
- 필기
- 이클립스
- java
- 웹개발
Archives
- Today
- Total
공부하는 히욤이
[기초다지기] : 연산자 - 형성평가 본문
연산자 - 형성평가1
제한시간: 1000 ms 메모리제한: 0 MB
해결횟수: 8151 회 시도횟수: 14313 회
국어 영어 수학 컴퓨터 과목의 점수를 정수로 입력받아서 총점과 평균을 구하는 프로그램을 작성하시오. (단 평균의 소수점 이하는 버림 한다.)
70 95 63 100 | sum 328 avg 82 |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 | import java.util.Scanner; public class Main { public static void main(String[] args) { Scanner scanner = new Scanner(System.in); int a = scanner.nextInt(); int b = scanner.nextInt(); int c = scanner.nextInt(); int d = scanner.nextInt(); System.out.println("sum " +(a+b+c+d)); System.out.println("avg " +((a+b+c+d)/4)); } } | cs |
연산자 - 형성평가2
제한시간: 1000 ms 메모리제한: 0 MB
해결횟수: 8147 회 시도횟수: 11235 회
두 정수를 입력받아서 나눈 몫과 나머지를 다음과 같은 형식으로 출력하는 프로그램을 작성하시오.
35 10 | 35 / 10 = 3...5 |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 | import java.util.Scanner; public class Main { public static void main(String[] args) { Scanner scanner = new Scanner(System.in); int a = scanner.nextInt(); int b = scanner.nextInt(); System.out.println(a + " / " + b + " = " +(a/b) +"..." + (a%b)); } } | cs |
연산자 - 형성평가3
제한시간: 1000 ms 메모리제한: 0 MB
해결횟수: 7782 회 시도횟수: 11136 회
직사각형의 가로와 세로의 길이를 정수형 값으로 입력받은 후 가로의 길이는 5 증가시키고 세로의 길이는 2배하여 저장한 후 가로의 길이 세로의 길이 넓이를 차례로 출력하는 프로그램을 작성하시오.
20 15 | width = 25 length = 30 area = 750 |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 | import java.util.Scanner; public class Main { public static void main(String[] args) { Scanner scanner = new Scanner(System.in); int x = scanner.nextInt() + 5; int y = scanner.nextInt() * 2; System.out.println("width = " + x); System.out.println("length = " + y); System.out.println("area = " + (x*y)); } } | cs |
연산자 - 형성평가4
제한시간: 1000 ms 메모리제한: 0 MB
해결횟수: 7561 회 시도횟수: 10610 회
두 정수를 입력받아 첫 번째 수는 전치증가연산자를 사용하고 두 번째 수는 후치감소연산자를 사용하여 출력하고 바뀐 값을 다시 출력하는 프로그램을 작성하시오.
10 15 | 11 15 11 14 |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 | import java.util.Scanner; public class Main { public static void main(String[] args) { Scanner scanner = new Scanner(System.in); int a = scanner.nextInt(); int b = scanner.nextInt(); ++a; System.out.println(a + " "+ b); b--; System.out.println(a + " "+ b); } } | cs |
연산자 - 형성평가5
제한시간: 1000 ms 메모리제한: 0 MB
해결횟수: 7709 회 시도횟수: 15996 회 Special Judge
민수와 기영이의 키와 몸무게를 입력받아 민수가 키도 크고 몸무게도 크면 1 그렇지 않으면 0을 출력하는 프로그램을 작성하시오.
(JAVA는 1 이면 true, 0 이면 false를 출력한다.)
150 35 145 35 | 0 |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 | import java.util.Scanner; public class Main { public static void main(String[] args) { Scanner scanner = new Scanner(System.in); int mh = scanner.nextInt(); int mg = scanner.nextInt(); int kh = scanner.nextInt(); int kg = scanner.nextInt(); System.out.println((mh>kh)&&(mg>kg)); } } | cs |
'Algorithm > Jungol' 카테고리의 다른 글
[기초다지기] : 디버깅 - 형성평가 (0) | 2019.02.25 |
---|---|
[기초다지기] : 디버깅 - 자가진단 (0) | 2019.01.06 |
[기초다지기] : 연산자 - 자가진단 (0) | 2019.01.06 |
[기초다지기] : 입력 - 형성평가 (0) | 2019.01.06 |
[기초다지기] : 입력 - 자가진단 (0) | 2019.01.06 |