도시의 인구 수 예측하기, 예제코드: scanf(), putchar()
포스트 난이도: HOO_Intern
# Example Codes
#include <stdio.h>
int main()
{
double hooPopulation;
int t;
printf("Enter a year after 2022>");
putchar ('\n');
scanf("%d",&t);
hooPopulation = 88.732+(5.889*(t-2022));
printf("Predicted HOO City population for %d (in thousands): ",t);
putchar ('\n');
printf("%.5f",hooPopulation);
putchar ('\n');
printf("Posted by HOO");
return 0;
}
Enter a year after 2022>
2030
Predicted HOO City population for 2030 (in thousands):
135.84400
Posted by HOO
728x90
'Programming Languages > C and C++' 카테고리의 다른 글
[C Examples] 킬로미터(Km)를 마일(Miles)로 변환하기: scaf(), %.f (0) | 2023.01.31 |
---|---|
[C Examples] 총 지불액 계산기(팁, 세금 포함): float, scanf, %.f (0) | 2023.01.30 |
[C Language] 동적 메모리 할당(Dynamic Memory Allocation): Realloc Function (0) | 2022.05.31 |
[C Language] 동적 메모리 할당: Malloc Function (0) | 2022.05.30 |
[C++ Examples] For loop와 1차 Array를 사용해서 점수 나타내기 (0) | 2022.04.17 |
댓글