#자유낙하 물체의 위치
## CODE <a class='btn btn-default' href='/codes/9655'>Link</a>
```
public class GravityCalculator {
public static void main(String[] args) {
// 변수 생성
double time = 5.0; // 이동 시간
double gravity = -9.81; // 중력 가속도
double initialVelocity = 0.0; // 초기 속도
double initialPosition = 1000.0; // 초기 위치
// 계산: x(t) = 0.5at^2 + v0t + x0
double finalPosition = 0.0;
// 결과 출력
System.out.printf("%.2f초 후 위치: %.2fm\n", time, finalPosition);
}
}
```
## INPUT
```
```
## OUPUT
```
5.00초 후 위치: 0.00m
```
sehongpark님의 답변
# 중력 가속도입니다
중력 가속도 값 -9.81 m/s<sup>2</sup>