일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 |
Tags
- SpringBoot
- Project
- Java
- 스프링
- JPA
- 팀프로젝트
- spring
- React
- 코딩테스트
- MariaDB
- 공유DB
- spring boot
- 입출력
- 코테
- ps
- 백준
- gradle
- AWS
- IntelliJ
- 디자인패턴
- 프로젝트
- 자바
- javascript
- JDK
- 취준생
- MVC
- Controller
- jdk11
- coding test
- 자취
Archives
- Today
- Total
목록코딩테스트 (34)
Tech Collection
[1330] 두 수 비교하기 - Java
www.acmicpc.net/problem/1330 1330번: 두 수 비교하기 두 정수 A와 B가 주어졌을 때, A와 B를 비교하는 프로그램을 작성하시오. www.acmicpc.net Java import java.util.*; public class Main{ public static void main(String[] args) { Scanner sc = new Scanner(System.in); int a = sc.nextInt(); int b = sc.nextInt(); if(a > b) System.out.println('>'); else if(a < b) System.out.println('
PS/BaekJoon
2021. 3. 6. 13:31
[1008] A/B - java
www.acmicpc.net/problem/1008 1008번: A/B 두 정수 A와 B를 입력받은 다음, A/B를 출력하는 프로그램을 작성하시오. www.acmicpc.net Java import java.util.*; public class Main{ public static void main(String[] args) { Scanner sc = new Scanner(System.in); double a = (double) sc.nextInt(); double b = (double) sc.nextInt(); System.out.println(a/b); } } solved.ac/class solved.ac - 문제 › CLASS › CLASS 1 solved.ac
PS/BaekJoon
2021. 3. 6. 13:27