백준 #32458번 Just Round Down

jhj·2024년 12월 30일

백준 JAVA

목록 보기
519/583
import java.util.Scanner;
public class Main {
	public static void main(String[] args) {
		
		Scanner sc = new Scanner(System.in);
		
		double a = sc.nextDouble();
		System.out.println((int)a);
		sc.close();
	}
}
profile
개발자를 꿈꾸는

0개의 댓글