JAVA/codeup 기초 100제

[ CodeUp 기초 100제 JAVA] 1012 / 실수 1개 입력받아 그대로 출력하기

ucong 2020. 12. 8. 09:27
문제설명
실수형(float)로 변수를 선언하고 그 변수에 실수값을 저장한 후
저장되어 있는 실수값을 출력해보자.

C예제
float x;
scanf("%f", &x);
printf("%f", x);
입력 출력
1.414213 1.414213

 

문제풀이
 
1
2
3
4
5
6
7
8
9
10
import java.util.Scanner;
 
public class Main {
    public static void main(String[] args) {
        Scanner sc = new Scanner(System.in);
        float x;
        x = sc.nextFloat();
        System.out.printf("%f",x);
    }