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
'C and C++' 카테고리의 다른 글
[C Examples] 별 모양으로 정사각형 만들기 (0) | 2023.02.01 |
---|---|
[C Examples] 적금 계산기 (0) | 2023.01.31 |
[C Language] 동적 메모리 할당(Dynamic Memory Allocation): Realloc Function (0) | 2022.05.31 |
[C Language] 동적 메모리 할당: Malloc Function (0) | 2022.05.30 |
[C++] 반복문: For Loop(For문) (0) | 2022.04.16 |
댓글