728x90
도시의 인구 수 예측하기, 예제코드: 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
'C and C++ > C and C++ Examples' 카테고리의 다른 글
[C Examples] Circle area, circumference of circle 계산기 (0) | 2023.01.31 |
---|---|
[C Examples] 총 지불액 계산기(팁, 세금 포함): float, scanf, %.f (0) | 2023.01.30 |
[C++ Examples] For loop와 1차 Array를 사용해서 점수 나타내기 (0) | 2022.04.17 |
[C++ Examples] Fixed, showpoint, setprecision(): 평균 근로 시간 구하기 (0) | 2022.03.13 |
[C++ Examples] setfill(), setw(): cin.get()으로 입력한 char를 setfill() 안에 char 타입 symbol 출력하기 (0) | 2022.03.12 |
댓글