1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
|
#include <iostream>
int main()
{
// 전체값에서 일부값은 몇 퍼센트?
////// 공식은 "일부값 나누기 전체값 곱하기 100"///////
// 10은 100에서 몇 퍼센트?
printf("%.2f%%\n", 10.0 / 100.0 * 100.0);
// 출력 결과: 10.00%
// 33은 100에서 몇 퍼센트?
float x = 33;
float y = 100;
printf("%.2f%%\n", x / y * 100.0);
// 105는 300의 몇퍼센트?
float x2 = 105.0;
float y2 = 300.0;
printf("%.2f%%\n", x2 / y2 * 100.0);
// 출력 결과: 35.00%
// 한달 봉급 156만원인 사람이, 음식 값으로 21만원을 쓰면,
// 그 음식값은 한 달 봉급의 몇 퍼센트?
printf("%.2f%%\n", 210000.0 / 1560000.0 * 100.0);
// 출력 결과: 13.46%
// 전체값의 몇 퍼센트는 얼마?
////// 공식은, "전체값 곱하기 퍼센트 나누기 100"/////////
// 100의 10퍼센트는 얼마?
printf("%.2f\n", 100.0 * 10.0 / 100.0);
// 출력 결과: 10.00
// 100의 33퍼센트는 얼마?
printf("%.2f\n", 100.0 * 33.0 / 100.0);
// 출력 결과: 33.00
// 300의 35퍼센트는 얼마?
printf("%.2f\n", 300.0 * 35.0 / 100.0);
// 출력 결과: 105.00
// 156만원의 13.46퍼센트는 얼마?
printf("%.2f\n", 1560000.0 * 13.46 / 100.0);
// 출력 결과 (21만원에 가까운 값): 209976.00
return 0;
}
http://colorscripter.com/info#e" target="_blank" style="color:#4f4f4ftext-decoration:none">Colored by Color Scripter
|
http://colorscripter.com/info#e" target="_blank" style="text-decoration:none;color:white">cs |
'프로그래밍 > 알고리즘' 카테고리의 다른 글
정수 N개의 합 (0) | 2019.10.11 |
---|---|
백준 4344 평균은 넘겠지 (0) | 2019.09.03 |
백준 8958 OX퀴즈 (0) | 2019.09.03 |
백준 평균 1546 (0) | 2019.09.03 |
백준 3052 나머지 (0) | 2019.09.02 |