728x90
킬로미터(Km)를 마일(Miles)로 변환하기: scaf(), %.f
포스트 난이도: HOO_Intern
# Example codes
#include <stdio.h>
#include <stdlib.h>
int main()
{
float miles, distance;
printf("Enter the distance (in Km): \n");
scanf("%f", &distance);
miles= (distance/1.6);
printf("%.2f Kilometers = %.2f Miles\n", distance, miles);
printf("Posted by HOO.");
return 0;
}
Enter the distance (in Km):
5600
5600.00 Kilometers = 3500.00 Miles
Posted by HOO.
728x90
'Programming Languages > C and C++' 카테고리의 다른 글
[C Examples] 적금 계산기 (0) | 2023.01.31 |
---|---|
[C Examples] Circle area, circumference of circle 계산기 (0) | 2023.01.31 |
[C Examples] 총 지불액 계산기(팁, 세금 포함): float, scanf, %.f (0) | 2023.01.30 |
[C Examples] 도시의 인구 수 예측하기, 예제코드: scanf(), putchar() (0) | 2023.01.30 |
[C Language] 동적 메모리 할당(Dynamic Memory Allocation): Realloc Function (0) | 2022.05.31 |
댓글